Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 | import { ConsumableType } from '@/types/v1';
import appearanceChange from './appearance-change.json';
import booze from './booze.json';
import contractNPC from './contract-npc.json';
import food from './food.json';
import generic from './generic.json';
import halloween from './halloween.json';
import immediate from './immediate.json';
import transmutation from './transmutation.json';
import unlock from './unlock';
import unTransmutation from './un-transmutation.json';
import upgradeRemoval from './upgrade-removal.json';
import utility from './utility.json';
export default {
[ConsumableType.APPEARANCE_CHANGE]: appearanceChange,
[ConsumableType.BOOZE]: booze,
[ConsumableType.CONTRACT_NPC]: contractNPC,
[ConsumableType.FOOD]: food,
[ConsumableType.GENERIC]: generic,
[ConsumableType.HALLOWEEN]: halloween,
[ConsumableType.IMMEDIATE]: immediate,
[ConsumableType.TRANSMUTATION]: transmutation,
[ConsumableType.UNLOCK]: unlock,
[ConsumableType.UN_TRANSMUTATION]: unTransmutation,
[ConsumableType.UPGRADE_REMOVAL]: upgradeRemoval,
[ConsumableType.UTILITY]: utility,
};
|