diff --git a/src/classes/constants.js b/src/classes/constants.js index 93a43fe..39ae5ca 100644 --- a/src/classes/constants.js +++ b/src/classes/constants.js @@ -15,6 +15,7 @@ const Constants = Object.freeze({ NIGHTMARE: { ID: 9, TEXT: 'Nightmare' }, SOULBOUND: { ID: 10, TEXT: 'Soulbound' }, REBELLION: { ID: 12, TEXT: 'Rebellion' }, + CONCLAVE_ARCANA: { ID: 14, TEXT: 'Conclave' }, }, ONFIDO_STATUS: { CLEAR: { TEXT: 'CLEAR', CODE: 'verification_cleared' }, diff --git a/src/splinterlands.js b/src/splinterlands.js index da1bc75..0bbb355 100644 --- a/src/splinterlands.js +++ b/src/splinterlands.js @@ -1280,6 +1280,8 @@ var splinterlands = (function () { return tier === 7; case Constants.EDITIONS.REBELLION.ID: return tier === 12; + case Constants.EDITIONS.CONCLAVE_ARCANA.ID: + return tier === 14; default: console.log(`Invalid set ${set.core}`); }