From 7096220a27feaa801545e7e0dc58873bbdbb2356 Mon Sep 17 00:00:00 2001 From: Zsolt Molnar Date: Sun, 5 Jan 2025 18:47:15 +0100 Subject: [PATCH] Add spell scroll names --- CHANGELOG.md | 4 ++++ gradle.properties | 2 +- src/main/resources/assets/wizards/lang/en_us.json | 3 +++ .../data/spell_engine/tags/item/spell_books.json | 8 ++++++++ src/main/resources/data/wizards/spells/arcane_beam.json | 4 ++-- 5 files changed, 18 insertions(+), 3 deletions(-) create mode 100644 src/main/resources/data/spell_engine/tags/item/spell_books.json diff --git a/CHANGELOG.md b/CHANGELOG.md index b876de4..4af60ee 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,7 @@ +# 2.2.3 + +- Add spell scroll names + # 2.2.2 - Add support to Lithostitched village structure injection diff --git a/gradle.properties b/gradle.properties index c8fe120..790a2db 100644 --- a/gradle.properties +++ b/gradle.properties @@ -12,7 +12,7 @@ fabric_api_version=0.102.0+1.21.1 # Mod maven_group=net archives_base_name=wizards -mod_version=2.2.2 +mod_version=2.2.3 minecraft_compat_version=1.21 # Dependencies diff --git a/src/main/resources/assets/wizards/lang/en_us.json b/src/main/resources/assets/wizards/lang/en_us.json index 9194b62..4434bff 100644 --- a/src/main/resources/assets/wizards/lang/en_us.json +++ b/src/main/resources/assets/wizards/lang/en_us.json @@ -4,6 +4,9 @@ "item.wizards.arcane_spell_book": "Tome of Arcane", "item.wizards.fire_spell_book": "Tome of Fire", "item.wizards.frost_spell_book": "Tome of Frost", + "item.wizards.arcane.spell_scroll": "Arcane Spell Scroll", + "item.wizards.fire.spell_scroll": "Fire Spell Scroll", + "item.wizards.frost.spell_scroll": "Frost Spell Scroll", "item.wizards.wand_novice": "Novice Wand", "item.wizards.wand_arcane": "Arcane Wand", diff --git a/src/main/resources/data/spell_engine/tags/item/spell_books.json b/src/main/resources/data/spell_engine/tags/item/spell_books.json new file mode 100644 index 0000000..df94fd1 --- /dev/null +++ b/src/main/resources/data/spell_engine/tags/item/spell_books.json @@ -0,0 +1,8 @@ +{ + "replace": false, + "values": [ + "wizards:arcane_spell_book", + "wizards:fire_spell_book", + "wizards:frost_spell_book" + ] +} \ No newline at end of file diff --git a/src/main/resources/data/wizards/spells/arcane_beam.json b/src/main/resources/data/wizards/spells/arcane_beam.json index 89b0e1c..01f27a3 100644 --- a/src/main/resources/data/wizards/spells/arcane_beam.json +++ b/src/main/resources/data/wizards/spells/arcane_beam.json @@ -82,7 +82,7 @@ "particle_id": "spell_engine:arcane_spell", "shape": "SPHERE", "origin": "CENTER", - "count": 1, + "count": 5, "min_speed": 0.1, "max_speed": 0.2 }, @@ -90,7 +90,7 @@ "particle_id": "firework", "shape": "SPHERE", "origin": "CENTER", - "count": 1, + "count": 3, "min_speed": 0.1, "max_speed": 0.2 }