Age | Commit message (Collapse) | Author | |
---|---|---|---|
2020-07-24 | Use def_* macros for automatic map event counts | Rangi | |
Resolves #742 | |||
2020-07-17 | return → endcallback, reloadandreturn → reloadend | Rangi | |
2020-03-21 | Add suffixes to some constants to avoid ambiguity | Rangi | |
- `PSYCHIC` → `PSYCHIC_TYPE` (not the trainer `PSYCHIC_T` or the move `PSYCHIC_M`) - `BLACKBELT` → `BLACKBELT_I` (not the trainer `BLACKBELT_T`) - `CURSE_T` → `CURSE_TYPE` (not the move `CURSE`) - `TOWN_MAP_D` → `TOWN_MAP_POSTER` (not the item `TOWN_MAP`) This also uncovered a misidentified event: `EVENT_DECO_PLANT_4` → `EVENT_DECO_POSTER_1`. (There are three plants and four posters.) | |||
2019-11-04 | Merge pull request #654 from Rangi42/master | Rangi | |
Miscellaneous cleanup issues | |||
2019-11-03 | Rename buttonsound to promptbutton | Rangi | |
2019-10-20 | LakeOfRage.asm: Rename MovementData | DeeDeeG | |
2019-10-20 | #641 fixes and additions. (#646) | mid-kid | |
Name a lot of text labels according to our conventions | |||
2019-04-21 | "object_const_def" instead of "const_def 2" | Rangi | |
2019-03-10 | Rename some call/jump script commands to avoid confusion with jr/jp asm ↵ | Rangi | |
instructions Fixes #580 | |||
2019-03-10 | Rename more script commands for consistency and predictability | Rangi | |
Fixes #540 | |||
2019-01-15 | Fix constants used with startbattle | mid-kid | |
2018-03-01 | Label more map scripts | Rangi | |
2018-02-27 | Replace "Map<MapName>Signpost<#>Script" labels | Rangi | |
2018-02-02 | Script commands don't have underscores | Rangi | |
2018-02-01 | Align map event coordinate columns | Rangi | |
2018-02-01 | warp_event x, y, map, warp_id | Rangi | |
2018-02-01 | SCENE_DEFAULT=0 and SCENE_FINISHED=1 (generic constants for a common scene ↵ | Rangi | |
pattern) | |||
2018-02-01 | Meaningful scene constant names | Rangi | |
(Two common patterns: 0=default event and 1=nothing; and 0=nothing and 1=some event) | |||
2018-01-31 | Add scene ID constants (TODO: meaningful names) | Rangi | |
2018-01-31 | const_def N | Rangi | |
2018-01-31 | Forgot the person→object rename | Rangi | |
2018-01-31 | Comment the person constants sections, like the others | Rangi | |
2018-01-30 | SPRITEMOVEDATA_ITEM_TREE → SPRITEMOVEDATA_STILL (it's used for other ↵ | Rangi | |
things like Azalea's Slowpokes, not just items and trees) | |||
2018-01-30 | Remove unreferenced map script heading labels | Rangi | |
2018-01-28 | grep -rl warp_def . | xargs sed -i s/warp_def/warp_event/g | Rangi | |
2018-01-24 | Remove Special_ prefix from special routines (close #478) | Rangi | |
2018-01-23 | trainers put the class and id first: `trainer YOUNGSTER, JOEY1, ...` | Rangi | |
2018-01-23 | hiddenitem, like itemball and object_event, puts the item first and the ↵ | Rangi | |
event last | |||
2018-01-16 | map_header → map_def; map_header_2 → map_data | Remy Oukaour | |
2018-01-13 | Introduce callback, hiddenitem, conditional_event, and cmdqueue macros for ↵ | Remy Oukaour | |
map scripts | |||
2018-01-12 | Trim whitespace | Remy Oukaour | |
2018-01-09 | Clean up some hex values in map scripts | Remy Oukaour | |
2017-12-28 | Consistent (x, y) coordinate formatting in map scripts | Remy Oukaour | |
2017-12-24 | Renaming: (fix #412) | Remy Oukaour | |
- MapTriggers / maptrigger → SceneScripts / scene_script - XYTriggers / xy_trigger → CoordEvents / coord_event - Signposts / signpost → BGEvents / bg_event - PersonEvents / person_event → ObjectEvents / object_event | |||
2017-12-17 | Auto-label more map scripts | Remy Oukaour | |
2017-12-17 | Auto-label more map scripts | Remy Oukaour | |
2017-12-10 | Use new palette constants | Remy Oukaour | |
2017-12-10 | All map triggers use the `maptrigger` macro, not `dw` | Remy Oukaour | |
.MapTriggers and .MapCallbacks lists are formatted consistently with .Warps, .XYTriggers, .Signposts, and .PersonEvents | |||
2017-12-10 | "Trainer*AfterBattleText" labels | Remy Oukaour | |
2017-12-10 | Consistent capitalization for map names, matching their constants | Remy Oukaour | |