From 0d60bc18fcf645e147362f2804e19b076a887679 Mon Sep 17 00:00:00 2001 From: David Cole <40234707+DavidArthurCole@users.noreply.github.com> Date: Sun, 29 Sep 2024 11:00:12 -0400 Subject: Add token costs for carnival upgrades (#1375) * Add token costs for carnival upgrades * Fix typo * Remove from misc.json, move to own file mimicking essences * Reformat with 2 spaces as this is being used everywhere --------- Co-authored-by: jani270 <69345714+jani270@users.noreply.github.com> --- constants/carnivalshops.json | 152 +++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 152 insertions(+) create mode 100644 constants/carnivalshops.json diff --git a/constants/carnivalshops.json b/constants/carnivalshops.json new file mode 100644 index 00000000..8e970bd2 --- /dev/null +++ b/constants/carnivalshops.json @@ -0,0 +1,152 @@ +{ + "carnivalTokenShops": { + "Spooky_Festival": { + "candy_scavenger": { + "costs": [ + 50, + 100, + 150, + 200, + 250 + ], + "name": "Candy Scavenger" + }, + "spooky_hook": { + "costs": [ + 50, + 100, + 150, + 200, + 250 + ], + "name": "Spooky Hook" + }, + "purple_vogue": { + "costs": [ + 100, + 200, + 400 + ], + "name": "Purple Vogue" + }, + "trick_or_treat_enthusiast": { + "costs": [ + 100, + 1000 + ], + "name": "Trick or Treat Enthusiast" + } + }, + "Season_of_Jerry": { + "icy_hook": { + "costs": [ + 50, + 100, + 150, + 200, + 250 + ], + "name": "Icy Hook" + }, + "present_connoissuer": { + "costs": [ + 50, + 100, + 150, + 200, + 250 + ], + "name": "Present Connoisseur" + }, + "professional_gifter": { + "costs": [ + 100, + 1000 + ], + "name": "Professional Gifter" + }, + "red_fad": { + "costs": [ + 100, + 200, + 400 + ], + "name": "Red Fad" + } + }, + "Fishing_Festival": { + "fishing_prodigy": { + "costs": [ + 50, + 100, + 150, + 200, + 250 + ], + "name": "Fishing Prodigy" + }, + "shark_sonar": { + "costs": [ + 50, + 100, + 150, + 200, + 250 + ], + "name": "Shark Sonar" + }, + "denture_collector": { + "costs": [ + 100, + 200, + 400 + ], + "name": "Denture Collector" + }, + "elasmobranchii_affinity": { + "costs": [ + 100, + 1000 + ], + "name": "Elasmobranchii Affinity" + } + }, + "Mining_Fiesta": { + "refined_mind": { + "costs": [ + 50, + 100, + 150, + 200, + 250 + ], + "name": "Refined Mind" + }, + "fortunate_festivity": { + "costs": [ + 50, + 100, + 150, + 200, + 250 + ], + "name": "Fortunate Festivity" + }, + "powder_hoarder": { + "costs": [ + 100, + 200, + 400 + ], + "name": "Powder Hoarder" + }, + "titanium_tenacity": { + "costs": [ + 100, + 1000 + ], + "name": "Titanium Tenacity" + } + } + } +} \ No newline at end of file -- cgit