Burn: Added card burning for notes and gems

This commit is contained in:
2022-09-26 16:09:23 +02:00
parent bbbcaaaf29
commit 16bb46403b
9 changed files with 183 additions and 30 deletions

View File

@@ -26,7 +26,35 @@ const CURRENCY_NAMES = {
2 : "Gems"
}
const QUALITY_VALUES = {
1 : {
type: 1,
value: 2
},
2 : {
type: 1,
value: 5
},
3 : {
type: 1,
value: 10
},
4 : {
type: 1,
value: 15
},
5 : {
type: 1,
value: 20
},
6 : {
type: 2,
value: 2
}
}
exports.QUALITY = QUALITY;
exports.QUALITY_NAMES = QUALITY_NAMES;
exports.CURRENCY_SYMBOLS = CURRENCY_SYMBOLS;
exports.CURRENCY_NAMES = CURRENCY_NAMES;
exports.CURRENCY_NAMES = CURRENCY_NAMES;
exports.QUALITY_VALUES = QUALITY_VALUES;