diff --git a/config/schemas/artifact.json b/config/schemas/artifact.json index 5a7aed863..ab335a5ca 100644 --- a/config/schemas/artifact.json +++ b/config/schemas/artifact.json @@ -93,7 +93,7 @@ "map" : { "type" : "string", "description" : ".def file for adventure map", - "format" : "defFile" + "format" : "animationFile" } } }, diff --git a/config/schemas/creature.json b/config/schemas/creature.json index d5bc82167..c32fb8fcb 100644 --- a/config/schemas/creature.json +++ b/config/schemas/creature.json @@ -133,12 +133,12 @@ "animation" : { "type" : "string", "description" : "File with animation of this creature in battles", - "format" : "defFile" + "format" : "animationFile" }, "map" : { "type" : "string", "description" : "File with animation of this creature on adventure map", - "format" : "defFile" + "format" : "animationFile" }, "mapMask" : { "type" : "array", @@ -184,7 +184,7 @@ "projectile" : { "type" : "string", "description" : "Path to projectile animation", - "format" : "defFile" + "format" : "animationFile" }, "ray" : { "type" : "array", diff --git a/config/schemas/hero.json b/config/schemas/hero.json index 419836386..148b92ca1 100644 --- a/config/schemas/hero.json +++ b/config/schemas/hero.json @@ -29,7 +29,7 @@ "battleImage" : { "type" : "string", "description" : "Custom animation to be used on battle, overrides hero class property", - "format" : "defFile" + "format" : "animationFile" }, "images" : { "type" : "object", diff --git a/config/schemas/heroClass.json b/config/schemas/heroClass.json index 9efdddaca..b6f5db342 100644 --- a/config/schemas/heroClass.json +++ b/config/schemas/heroClass.json @@ -42,12 +42,12 @@ "female" : { "type" : "string", "description" : "Female version", - "format" : "defFile" + "format" : "animationFile" }, "male" : { "type" : "string", "description" : "Male version", - "format" : "defFile" + "format" : "animationFile" } } } diff --git a/config/schemas/objectTemplate.json b/config/schemas/objectTemplate.json index 9450f5af8..d98f8e8c4 100644 --- a/config/schemas/objectTemplate.json +++ b/config/schemas/objectTemplate.json @@ -9,12 +9,12 @@ "animation" : { "type" : "string", "description" : "Path to def file with animation of this object", - "format" : "defFile" + "format" : "animationFile" }, "editorAnimation" : { "type" : "string", "description" : "Optional path to def file with animation of this object to use in map editor", - "format" : "defFile" + "format" : "animationFile" }, "visitableFrom" : { "type" : "array", diff --git a/config/schemas/obstacle.json b/config/schemas/obstacle.json index bbda0e589..9d245b23d 100644 --- a/config/schemas/obstacle.json +++ b/config/schemas/obstacle.json @@ -45,7 +45,7 @@ "type" : "string", "description" : "Image resource", "anyOf" : [ - { "format" : "defFile" }, + { "format" : "animationFile" }, { "format" : "imageFile" } ] }, diff --git a/config/schemas/river.json b/config/schemas/river.json index db88affaf..0c79b14da 100644 --- a/config/schemas/river.json +++ b/config/schemas/river.json @@ -20,7 +20,7 @@ { "type" : "string", "description" : "Name of file with river graphics", - "format" : "defFile" + "format" : "animationFile" }, "delta" : { diff --git a/config/schemas/road.json b/config/schemas/road.json index 623899ce5..bf9d045da 100644 --- a/config/schemas/road.json +++ b/config/schemas/road.json @@ -20,7 +20,7 @@ { "type" : "string", "description" : "Name of file with road graphics", - "format" : "defFile" + "format" : "animationFile" }, "moveCost" : { diff --git a/config/schemas/spell.json b/config/schemas/spell.json index a94ed65d3..dff3bc2df 100644 --- a/config/schemas/spell.json +++ b/config/schemas/spell.json @@ -15,13 +15,13 @@ { //assumed verticalPosition: top "type" : "string", - "format" : "defFile" + "format" : "animationFile" }, { "type" : "object", "properties" : { "verticalPosition" : {"type" : "string", "enum" :["top","bottom"]}, - "defName" : {"type" : "string", "format" : "defFile"}, + "defName" : {"type" : "string", "format" : "animationFile"}, "effectName" : { "type" : "string" } }, "additionalProperties" : false @@ -41,7 +41,7 @@ "items" : { "type" : "object", "properties" : { - "defName" : {"type" : "string", "format" : "defFile"}, + "defName" : {"type" : "string", "format" : "animationFile"}, "minimumAngle" : {"type" : "number", "minimum" : 0} }, "additionalProperties" : false diff --git a/config/schemas/terrain.json b/config/schemas/terrain.json index bc518106b..23aa598a3 100644 --- a/config/schemas/terrain.json +++ b/config/schemas/terrain.json @@ -35,7 +35,7 @@ { "type" : "string", "description" : "Name of file with graphicks", - "format" : "defFile" + "format" : "animationFile" }, "rockTerrain" : {