Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(port): Rabbit Mutations #5885

Draft
wants to merge 2 commits into
base: main
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions data/json/achievements.json
Original file line number Diff line number Diff line change
Expand Up @@ -263,6 +263,14 @@
"hidden_by": [ "achievement_mutation_threshold_plant" ],
"requirements": [ { "event_statistic": "num_avatar_mutation_threshold_plant", "is": ">=", "target": 1 } ]
},
{
"id": "achievement_mutation_threshold_rabbit",
"type": "achievement",
"name": { "str": "[Mutation] Finally beat the tortoise…" },
"description": "You finally won the race against the tortoise. You are now a post-threshold Rabbit mutant.",
"hidden_by": [ "achievement_mutation_threshold_rabbit" ],
"requirements": [ { "event_statistic": "num_avatar_mutation_threshold_rabbit", "is": ">=", "target": 1 } ]
},
{
"id": "achievement_mutation_threshold_rat",
"type": "achievement",
Expand Down
16 changes: 16 additions & 0 deletions data/json/items/comestibles/mutagen.json
Original file line number Diff line number Diff line change
Expand Up @@ -187,6 +187,15 @@
"color": "green",
"use_action": { "type": "mutagen_iv", "mutation_category": "PLANT" }
},
{
"id": "iv_mutagen_rabbit",
"copy-from": "iv_mutagen_flavor",
"type": "COMESTIBLE",
"name": "rabbit serum",
"description": "A super-concentrated mutagen that looks like pureed carrots. You need a syringe to inject it… if you really want to?",
"color": "light_red",
"use_action": { "type": "mutagen_iv", "mutation_category": "RABBIT" }
},
{
"id": "iv_mutagen_raptor",
"copy-from": "iv_mutagen_flavor",
Expand Down Expand Up @@ -387,6 +396,13 @@
"price": "2 kUSD",
"use_action": { "type": "mutagen", "mutation_category": "RAPTOR" }
},
{
"id": "mutagen_rabbit",
"copy-from": "mutagen_flavor",
"type": "COMESTIBLE",
"name": "rabbit mutagen",
"use_action": { "type": "mutagen", "mutation_category": "RABBIT" }
},
{
"id": "mutagen_rat",
"copy-from": "mutagen_flavor",
Expand Down
9 changes: 9 additions & 0 deletions data/json/mutations/mutation_category.json
Original file line number Diff line number Diff line change
Expand Up @@ -256,5 +256,14 @@
"mutagen_message": "You feel a desire to curl up in a nice, warm pile of… shredded paper.",
"iv_message": "You feel… small. But comfortable.",
"memorial_message": "Found the cheese."
},
{
"type": "mutation_category",
"id": "RABBIT",
"name": "Rabbit",
"threshold_mut": "THRESH_RABBIT",
"mutagen_message": "Walking is overrated. It's time to start hopping.",
"iv_message": "You are craving beta carotene.",
"memorial_message": "Acquired a taste for carrots."
}
]
5 changes: 4 additions & 1 deletion data/json/mutations/mutation_ordering.json
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,7 @@
"LUPINE_FUR",
"LYNX_FUR",
"PLANTSKIN",
"RABBIT_FUR",
"SCALES",
"SKIN_ROUGH",
"SLEEK_SCALES",
Expand Down Expand Up @@ -167,6 +168,7 @@
"TAIL_CLUB",
"TAIL_FIN",
"TAIL_LONG",
"TAIL_RABBIT",
"TAIL_RAPTOR",
"TAIL_RAT",
"TAIL_STING",
Expand All @@ -178,7 +180,7 @@
{ "id": [ "LEG_TENTACLES" ], "order": 4000 },
{ "id": [ "HOOVES", "ROOTS1", "ROOTS2", "ROOTS3", "TALONS" ], "order": 4500 },
{ "id": [ "FLOWERS" ], "order": 5000 },
{ "id": [ "ELFA_EARS", "FELINE_EARS", "LUPINE_EARS", "URSINE_EARS" ], "order": 5500 },
{ "id": [ "ELFA_EARS", "RABBIT_EARS", "FELINE_EARS", "LUPINE_EARS", "URSINE_EARS" ], "order": 5500 },
{ "id": [ "ANTENNAE", "ANTLERS", "CURVED_HORNS", "HORNS", "POINTED_HORNS" ], "order": 6000 },
{ "id": [ "COMPOUND_EYES", "ELFAEYES", "FEL_EYE", "LIZ_EYE" ], "order": 6500 },
{
Expand All @@ -190,6 +192,7 @@
"MUZZLE_BEAR",
"MUZZLE_LONG",
"MUZZLE_RAT",
"RABBIT_NOSE",
"MINOTAUR",
"SLIT_NOSTRILS",
"SNOUT",
Expand Down
Loading
Loading