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

Adjust some potion names #40006

Merged
merged 2 commits into from
Apr 30, 2020
Merged
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
14 changes: 7 additions & 7 deletions data/mods/Magiclysm/items/cast_spell_items.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[
{
"id": "mana_potion_lesser",
"name": "Lesser Mana Potion",
"name": { "str": "lesser mana potion" },
"description": "You can't buy these, so you need to save them until the last boss! Actually, don't even use them there!",
"use_action": { "type": "cast_spell", "spell_id": "potion_recover_mana", "no_fail": true, "level": 0 },
"type": "COMESTIBLE",
Expand All @@ -24,22 +24,22 @@
{
"id": "mana_potion",
"type": "COMESTIBLE",
"name": "Mana Potion",
"name": { "str": "mana potion" },
"copy-from": "mana_potion_lesser",
"use_action": { "type": "cast_spell", "spell_id": "potion_recover_mana", "no_fail": true, "level": 5 },
"price": 10000
},
{
"id": "mana_potion_greater",
"type": "COMESTIBLE",
"name": "Greater Mana Potion",
"name": { "str": "greater mana potion" },
"copy-from": "mana_potion_lesser",
"use_action": { "type": "cast_spell", "spell_id": "potion_recover_mana", "no_fail": true, "level": 15 },
"price": 30000
},
{
"id": "cats_grace_potion",
"name": { "str": "Potion of Cat's Grace", "str_pl": "Potions of Cat's Grace" },
"name": { "str": "potion of Cat's Grace", "str_pl": "potions of Cat's Grace" },
"description": "This is a potion of Cat's Grace. It will increase your dexterity for 10 minutes.",
"use_action": { "type": "cast_spell", "spell_id": "cats_grace", "no_fail": true, "level": 9 },
"type": "COMESTIBLE",
Expand All @@ -60,23 +60,23 @@
},
{
"id": "ogres_strength_potion",
"name": { "str": "Potion of Ogre's Strength", "str_pl": "Potions of Ogre's Strength" },
"name": { "str": "potion of Ogre's Strength", "str_pl": "potions of Ogre's Strength" },
"description": "This is a potion of Ogre's Strength. It will increase your strength for 10 minutes.",
"use_action": { "type": "cast_spell", "spell_id": "ogres_strength", "no_fail": true, "level": 9 },
"type": "COMESTIBLE",
"copy-from": "cats_grace_potion"
},
{
"id": "eagles_sight_potion",
"name": { "str": "Potion of Eagle's Sight", "str_pl": "Potions of Eagle's Sight" },
"name": { "str": "potion of Eagle's Sight", "str_pl": "potions of Eagle's Sight" },
"description": "This is a potion of Eagle's Sight. It will increase your perception for 10 minutes.",
"use_action": { "type": "cast_spell", "spell_id": "eagles_sight", "no_fail": true, "level": 9 },
"type": "COMESTIBLE",
"copy-from": "cats_grace_potion"
},
{
"id": "foxs_cunning_potion",
"name": { "str": "Potion of Fox's Cunning", "str_pl": "Potions of Fox's Cunning" },
"name": { "str": "potion of Fox's Cunning", "str_pl": "potions of Fox's Cunning" },
"description": "This is a potion of Fox's Cunning. It will increase your intelligence for 10 minutes.",
"use_action": { "type": "cast_spell", "spell_id": "foxs_cunning", "no_fail": true, "level": 9 },
"type": "COMESTIBLE",
Expand Down