From 43fbb4d6e62a6b536d97c5482b76bc7f47011418 Mon Sep 17 00:00:00 2001 From: feildmaster Date: Sun, 22 Oct 2023 10:18:12 -0500 Subject: [PATCH] chore: add elo and exp types --- src/structures/constants/item.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/structures/constants/item.js b/src/structures/constants/item.js index 9abaf13..c5da33e 100644 --- a/src/structures/constants/item.js +++ b/src/structures/constants/item.js @@ -4,6 +4,8 @@ export default class Item extends Constant { static GOLD = new Item('Gold', 'gold', 'GOLD', 'reward-gold'); static UCP = new Item('UCP', 'ucp', 'reward-ucp'); static DUST = new Item('Dust', 'dust', 'DUST', 'reward-dust'); + static EXP = new Item('XP', 'xp', 'exp', 'experience', 'stat-xp'); + static ELO = new Item('elo'); static DT_FRAGMENT = new Item('DT Fragment', 'ragment', 'dt fragment', 'reward-dt-fragment'); static UT_PACK = new Item('Pack', 'pack', 'PACK', 'reward-pack');