aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Cole <40234707+DavidArthurCole@users.noreply.github.com>2024-09-29 11:00:12 -0400
committerGitHub <noreply@github.com>2024-09-29 15:00:12 +0000
commit0d60bc18fcf645e147362f2804e19b076a887679 (patch)
treeb24c23f6368c076b80c5b3b0a8a7dbde5d86160a
parenta1a3c14e3b6db4acd89a61ab459c932b82c12f91 (diff)
downloadNotEnoughUpdates-REPO-0d60bc18fcf645e147362f2804e19b076a887679.tar.gz
NotEnoughUpdates-REPO-0d60bc18fcf645e147362f2804e19b076a887679.tar.bz2
NotEnoughUpdates-REPO-0d60bc18fcf645e147362f2804e19b076a887679.zip
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>
-rw-r--r--constants/carnivalshops.json152
1 files changed, 152 insertions, 0 deletions
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