From b981ab38dae8c71ff7584caceca903ac164a7eab Mon Sep 17 00:00:00 2001 From: GuardianDll <67688115+GuardianDll@users.noreply.github.com> Date: Mon, 21 Feb 2022 07:24:22 +0100 Subject: [PATCH] Add debug mana mutation to magiclysm (#55473) --- .../Magiclysm/mutations/debug_mutations.json | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 data/mods/Magiclysm/mutations/debug_mutations.json diff --git a/data/mods/Magiclysm/mutations/debug_mutations.json b/data/mods/Magiclysm/mutations/debug_mutations.json new file mode 100644 index 0000000000000..2adc19cbe21c7 --- /dev/null +++ b/data/mods/Magiclysm/mutations/debug_mutations.json @@ -0,0 +1,17 @@ +[ + { + "type": "mutation", + "id": "DEBUG_MANA", + "name": { "str": "Debug Mana" }, + "points": 99, + "valid": false, + "description": "To cast bug killing spells.", + "debug": true, + "enchantments": [ + { + "condition": "ALWAYS", + "values": [ { "value": "MAX_MANA", "add": 500000 }, { "value": "REGEN_MANA", "multiply": 1000 } ] + } + ] + } +]