diff options
author | yenatch <yenatch@gmail.com> | 2015-07-20 23:05:28 -0700 |
---|---|---|
committer | yenatch <yenatch@gmail.com> | 2015-07-20 23:05:28 -0700 |
commit | 973721491c38aa3014f5b28982227a618d2f6b59 (patch) | |
tree | e01415064e6da53a471d75b2eb0113846650322b /macros/trainer.asm | |
parent | a3c6931fa8edd09fcea678fd8d2e9988951380de (diff) | |
parent | 0b5471f385d3cc66bb4ae7aa4191ce3af9f50cac (diff) |
Merge remote-tracking branch 'kanzure/master' into gfx-script
Diffstat (limited to 'macros/trainer.asm')
-rw-r--r-- | macros/trainer.asm | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/macros/trainer.asm b/macros/trainer.asm new file mode 100644 index 000000000..b7c8ad803 --- /dev/null +++ b/macros/trainer.asm @@ -0,0 +1,11 @@ +trainerclass: MACRO
+ enum \1
+const_value = 1
+ENDM
+
+trainer: MACRO
+ ; flag, group, id, seen text, win text, lost text, talk-again text
+ dw \1
+ db \2, \3
+ dw \4, \5, \6, \7
+ENDM
|