瀏覽代碼

code review

Laserlicht 5 月之前
父節點
當前提交
a37f918a15
共有 2 個文件被更改,包括 5 次插入8 次删除
  1. 4 0
      config/spellSchools.json
  2. 1 8
      docs/modders/Entities_Format/Spell_School_Format.md

+ 4 - 0
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"
 	}
 }

+ 1 - 8
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"
 ```