mirror of
https://gitlab.com/xCrystal/pokecrystal-board.git
synced 2024-11-16 11:27:33 -08:00
Add a template for maps/*.asm
This commit is contained in:
parent
7729dcd204
commit
7233c19f57
@ -19,6 +19,7 @@
|
||||
- [Object events](#object-events)
|
||||
- [Movement types](#movement-types)
|
||||
- [Object types](#object-types)
|
||||
- [Template](#template)
|
||||
|
||||
|
||||
## Object constants
|
||||
@ -203,3 +204,33 @@
|
||||
<pre>
|
||||
trainer <i>group_id</i>, <i>trainer_id</i>, <i>event_flag</i>, <i>seen_text</i>, <i>beaten_text</i>, <i>loss_text</i>, <i>script</i>
|
||||
</pre>
|
||||
|
||||
|
||||
## Template
|
||||
|
||||
<pre>
|
||||
object_const_def
|
||||
; const <i>MAPNAME</i>_<i>OBJECTNAME</i>
|
||||
|
||||
<i>MapName</i>_MapScripts:
|
||||
def_scene_scripts
|
||||
; scene_script <i>script</i>
|
||||
|
||||
def_callbacks
|
||||
; callback <i>type</i>, <i>script</i>
|
||||
|
||||
<i>MapName</i>_MapEvents:
|
||||
db 0, 0 ; filler
|
||||
|
||||
def_warp_events
|
||||
; warp_event <i>x</i>, <i>y</i>, <i>map</i>, <i>warp_id</i>
|
||||
|
||||
def_coord_events
|
||||
; coord_event <i>x</i>, <i>y</i>, <i>scene_id</i>, <i>script</i>
|
||||
|
||||
def_bg_events
|
||||
; bg_event <i>x</i>, <i>y</i>, <i>type</i>, <i>script</i>
|
||||
|
||||
def_object_events
|
||||
; object_event <i>x</i>, <i>y</i>, <i>sprite</i>, <i>movement</i>, <i>rx</i>, <i>ry</i>, <i>h1</i>, <i>h2</i>, <i>palette</i>, <i>type</i>, <i>range</i>, <i>script</i>, <i>event_flag</i>
|
||||
</pre>
|
||||
|
Loading…
Reference in New Issue
Block a user