From a37f918a15d74fd6c7de1de1dae43808fa147a12 Mon Sep 17 00:00:00 2001 From: Laserlicht <13953785+Laserlicht@users.noreply.github.com> Date: Tue, 8 Jul 2025 09:57:03 +0200 Subject: [PATCH] code review --- config/spellSchools.json | 4 ++++ docs/modders/Entities_Format/Spell_School_Format.md | 9 +-------- 2 files changed, 5 insertions(+), 8 deletions(-) diff --git a/config/spellSchools.json b/config/spellSchools.json index 40abc223f..612ccbc07 100644 --- a/config/spellSchools.json +++ b/config/spellSchools.json @@ -1,21 +1,25 @@ { "air" : { "index" : 0, + "name": "Air", "schoolBorders" : "SplevA" }, "fire" : { "index" : 1, + "name": "Fire", "schoolBorders" : "SplevF" }, "earth" : { "index" : 2, + "name": "Earth", "schoolBorders" : "SplevE" }, "water" : { "index" : 3, + "name": "Water", "schoolBorders" : "SplevW" } } diff --git a/docs/modders/Entities_Format/Spell_School_Format.md b/docs/modders/Entities_Format/Spell_School_Format.md index d05544b94..157782f7a 100644 --- a/docs/modders/Entities_Format/Spell_School_Format.md +++ b/docs/modders/Entities_Format/Spell_School_Format.md @@ -1,12 +1,5 @@ # Spell School Format -WARNING: currently custom spell schools are only partially supported: - -- it is possible to use custom spell schools in bonus system -- it is possible to make skill for specializing in such spell -- it is possible to specify border decorations for mastery level of such spell in spellbook -- it is possible to set bookmarks and header image for spellbook - ```json // Internal field for H3 schools. Do not use for mods "index" : "", @@ -20,6 +13,6 @@ WARNING: currently custom spell schools are only partially supported: // animation file with bookmark symbol (first frame unselected, second is selected) "schoolBookmark" : "schoolBookmark", - // image file for feader of scool for spellbook + // image file for header of school for spellbook "schoolHeader" : "SchoolHeader" ```