diff options
author | Olivier Gayot <duskcoder@gmail.com> | 2015-01-09 23:24:40 +0100 |
---|---|---|
committer | Olivier Gayot <duskcoder@gmail.com> | 2015-01-09 23:25:15 +0100 |
commit | c870c8f03ffc7b78bca72dc9d7de7fd5305cf4f2 (patch) | |
tree | 743736274e8fbf8f6b4bcc8a849893eec197b383 | |
parent | 5c3d750a943ecd9d1e81fe5f7e01cd69d07c8cae (diff) |
added Ultima
this cast deals non elemental magic damages to every opponent
Signed-off-by: Olivier Gayot <duskcoder@gmail.com>
-rw-r--r-- | priv_entries.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/priv_entries.h b/priv_entries.h index 5d9913b..f553a2b 100644 --- a/priv_entries.h +++ b/priv_entries.h @@ -131,6 +131,14 @@ struct entry_t black_magic_entries[] = { .data = (enum element_t []) { ELEMENT_NONE }, .target = TARGET_SINGLE, }, + }, { + .name = "Ultima", + .children_cnt = 0, + .action = { + .f = cast_element, + .data = (enum element_t []) { ELEMENT_NONE }, + .target = TARGET_TEAM, + }, }, }; |