-
Notifications
You must be signed in to change notification settings - Fork 154
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
168 changed files
with
12,376 additions
and
22 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
61 changes: 61 additions & 0 deletions
61
WDE.DatabaseEditors/DbDefinitions/cmangos/creature_ai_summons.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,61 @@ | ||
{ | ||
"id": "creature_ai_summons", | ||
"compatibility": [ | ||
"CMaNGOS-WoTLK" | ||
], | ||
"name": "Creature Ai Summons", | ||
"description": "Positions for summons in Event AI", | ||
"table_name": "creature_ai_summons", | ||
"table_index_name": "id", | ||
"record_mode": "SingleRow", | ||
"group_name": "Event AI", | ||
"icon_path": "Icons/document_creature_summon_groups.png", | ||
"reload_command": "reload creature_ai_summons", | ||
"primary_key": [ | ||
"id" | ||
], | ||
"groups": [ | ||
{ | ||
"group_name": "group", | ||
"fields": [ | ||
{ | ||
"name": "Id", | ||
"db_column_name": "id", | ||
"value_type": "uint" | ||
}, | ||
{ | ||
"name": "Position X", | ||
"db_column_name": "position_x", | ||
"value_type": "float" | ||
}, | ||
{ | ||
"name": "Position Y", | ||
"db_column_name": "position_y", | ||
"value_type": "float" | ||
}, | ||
{ | ||
"name": "Position Z", | ||
"db_column_name": "position_z", | ||
"value_type": "float" | ||
}, | ||
{ | ||
"name": "Orientation", | ||
"db_column_name": "orientation", | ||
"value_type": "float" | ||
}, | ||
{ | ||
"name": "Spawntimesecs", | ||
"db_column_name": "spawntimesecs", | ||
"value_type": "uint", | ||
"default": 120 | ||
}, | ||
{ | ||
"name": "Comment", | ||
"db_column_name": "comment", | ||
"value_type": "string", | ||
"default": "" | ||
} | ||
] | ||
} | ||
] | ||
} |
91 changes: 91 additions & 0 deletions
91
WDE.DatabaseEditors/DbDefinitions/cmangos/creature_spell_list.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,91 @@ | ||
{ | ||
"id": "creature_spell_list", | ||
"compatibility": [ | ||
"CMaNGOS-WoTLK" | ||
], | ||
"name": "Creature Spell List", | ||
"description": "Used to define spells per creature.", | ||
"table_name": "creature_spell_list", | ||
"table_index_name": "Id", | ||
"record_mode": "SingleRow", | ||
"group_name": "Combat", | ||
"icon_path": "Icons/document_creature_spell.png", | ||
"picker": "Parameter", | ||
"primary_key": [ | ||
"Id", | ||
"Position" | ||
], | ||
"groups": [ | ||
{ | ||
"group_name": "group", | ||
"fields": [ | ||
{ | ||
"name": "Id", | ||
"db_column_name": "Id", | ||
"value_type": "CreatureTemplateSpellListIdParameter" | ||
}, | ||
{ | ||
"name": "Position", | ||
"db_column_name": "Position", | ||
"value_type": "int" | ||
}, | ||
{ | ||
"name": "Spell", | ||
"db_column_name": "SpellId", | ||
"value_type": "SpellParameter" | ||
}, | ||
{ | ||
"name": "Initial Min", | ||
"db_column_name": "InitialMin", | ||
"value_type": "int" | ||
}, | ||
{ | ||
"name": "Initial Max", | ||
"db_column_name": "InitialMax", | ||
"value_type": "int" | ||
}, | ||
{ | ||
"name": "Repeat Min", | ||
"db_column_name": "RepeatMin", | ||
"value_type": "int" | ||
}, | ||
{ | ||
"name": "Repeat Max", | ||
"db_column_name": "RepeatMax", | ||
"value_type": "int" | ||
}, | ||
{ | ||
"name": "Flags", | ||
"db_column_name": "Flags", | ||
"value_type": "MangosSpellListFlagsParameter" | ||
}, | ||
{ | ||
"name": "Target", | ||
"db_column_name": "TargetId", | ||
"value_type": "TableReference(creature_spell_targeting#Id)Parameter" | ||
}, | ||
{ | ||
"name": "Relay Script Id", | ||
"db_column_name": "ScriptId", | ||
"value_type": "int", | ||
"zero_is_blank": true | ||
}, | ||
{ | ||
"name": "Availability", | ||
"db_column_name": "Availability", | ||
"value_type": "PercentageParameter" | ||
}, | ||
{ | ||
"name": "Probability", | ||
"db_column_name": "Probability", | ||
"value_type": "int" | ||
}, | ||
{ | ||
"name": "Comment", | ||
"db_column_name": "Comments", | ||
"value_type": "string" | ||
} | ||
] | ||
} | ||
] | ||
} |
46 changes: 46 additions & 0 deletions
46
WDE.DatabaseEditors/DbDefinitions/cmangos/creature_spell_list_entry.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
{ | ||
"id": "creature_spell_list_entry", | ||
"compatibility": [ | ||
"CMaNGOS-WoTLK" | ||
], | ||
"name": "Creature Spell List Entry", | ||
"description": "Holds basic chance of a ai to perform either a SPELL_LIST_FLAG_SUPPORT_ACTION or SPELL_LIST_FLAG_RANGED_ACTION.", | ||
"table_name": "creature_spell_list_entry", | ||
"table_index_name": "Id", | ||
"record_mode": "SingleRow", | ||
"group_name": "Combat", | ||
"skip_quick_load": true, | ||
"icon_path": "Icons/document_creature_spell_group.png", | ||
"reload_command": "reload creature_spell_list_entry", | ||
"primary_key": [ | ||
"Id" | ||
], | ||
"groups": [ | ||
{ | ||
"group_name": "group", | ||
"fields": [ | ||
{ | ||
"name": "Id", | ||
"db_column_name": "Id", | ||
"value_type": "int", | ||
"read_only": true | ||
}, | ||
{ | ||
"name": "Name", | ||
"db_column_name": "Name", | ||
"value_type": "string" | ||
}, | ||
{ | ||
"name": "Chance Support Action", | ||
"db_column_name": "ChanceSupportAction", | ||
"value_type": "int" | ||
}, | ||
{ | ||
"name": "Chance Ranged Attack", | ||
"db_column_name": "ChanceRangedAttack", | ||
"value_type": "int" | ||
} | ||
] | ||
} | ||
] | ||
} |
56 changes: 56 additions & 0 deletions
56
WDE.DatabaseEditors/DbDefinitions/cmangos/creature_spell_targeting.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,56 @@ | ||
{ | ||
"id": "creature_spell_targeting", | ||
"compatibility": [ | ||
"CMaNGOS-WoTLK" | ||
], | ||
"name": "Creature Spell Targeting", | ||
"description": "Spell targeting data", | ||
"table_name": "creature_spell_targeting", | ||
"table_index_name": "Id", | ||
"record_mode": "SingleRow", | ||
"group_name": "Combat", | ||
"skip_quick_load": true, | ||
"icon_path": "Icons/document_creature_spell_group.png", | ||
"reload_command": "reload creature_spell_targeting", | ||
"primary_key": [ | ||
"Id" | ||
], | ||
"groups": [ | ||
{ | ||
"group_name": "group", | ||
"fields": [ | ||
{ | ||
"name": "Id", | ||
"db_column_name": "Id", | ||
"value_type": "int", | ||
"read_only": true | ||
}, | ||
{ | ||
"name": "Type", | ||
"db_column_name": "Type", | ||
"value_type": "CreatureSpellTargetingTypeParameter" | ||
}, | ||
{ | ||
"name": "Param 1", | ||
"db_column_name": "Param1", | ||
"value_type": "int" | ||
}, | ||
{ | ||
"name": "Param 2", | ||
"db_column_name": "Param2", | ||
"value_type": "int" | ||
}, | ||
{ | ||
"name": "Param 3", | ||
"db_column_name": "Param3", | ||
"value_type": "int" | ||
}, | ||
{ | ||
"name": "Comments", | ||
"db_column_name": "Comments", | ||
"value_type": "string" | ||
} | ||
] | ||
} | ||
] | ||
} |
57 changes: 57 additions & 0 deletions
57
WDE.DatabaseEditors/DbDefinitions/cmangos/dbscript_random_template.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,57 @@ | ||
{ | ||
"id": "dbscript_random_templates", | ||
"compatibility": [ | ||
"CMaNGOS-WoTLK" | ||
], | ||
"name": "Db script Random Templates", | ||
"description": "Random templates used to define random texts or relay script IDs", | ||
"table_name": "dbscript_random_templates", | ||
"table_index_name": "id", | ||
"record_mode": "SingleRow", | ||
"group_name": "Database scripts", | ||
"icon_path": "Icons/document_dice.png", | ||
"primary_key": [ | ||
"id", | ||
"type", | ||
"target_id" | ||
], | ||
"groups": [ | ||
{ | ||
"group_name": "group", | ||
"fields": [ | ||
{ | ||
"name": "Id", | ||
"db_column_name": "id", | ||
"value_type": "uint", | ||
"preferred_width": 40.0 | ||
}, | ||
{ | ||
"name": "Type", | ||
"db_column_name": "type", | ||
"value_type": "MangosDbScriptRandomTemplateTypeParameter", | ||
"preferred_width": 55.0 | ||
}, | ||
{ | ||
"name": "Target Value", | ||
"db_column_name": "target_id", | ||
"value_type": "DbScriptRandomTemplateTargetValueParameter", | ||
"preferred_width": 200.0 | ||
}, | ||
{ | ||
"name": "Chance", | ||
"db_column_name": "chance", | ||
"value_type": "PercentageParameter", | ||
"preferred_width": 40.0, | ||
"zero_is_blank": true | ||
}, | ||
{ | ||
"name": "Comment", | ||
"db_column_name": "comments", | ||
"value_type": "string", | ||
"default": "", | ||
"can_be_null": true | ||
} | ||
] | ||
} | ||
] | ||
} |
Oops, something went wrong.