jep-hack/maps/LakeOfRageMart.asm
Llinos Evans ac0d055474 Readme update, Lake of Rage changes, and must be 8-bit fixes
A slapdash of various little bits and pieces.
- Lake of Rage has a small culture entry at the top to illustrate what we're setting out to do. I mentioned the shell middens and canonised it alongside GSC.
- Move constants now have their 16-bit IDs set up
- Palfixed Feradactyl and Pupperon, fixed former's credit with confirmation from pokeoctober
- Wiped out the must be 8-bit errors on various Pokemon's `base_stats.asm` files.
- Fixed some aspects of Strong Arm and Water Sport calling garbage data; this was due to them using 8-bit comparison systems where there needed to be 16-bits. This fixes a good bit of their HM usage. Battle bugs need resolving (presumably due to a lack of gfx?)
- Fixed AI scoring with Water Sport (hopefully)
- Updated the readme with some of our progress over the past 5 months.
2025-01-03 13:19:09 +00:00

55 lines
1.3 KiB
NASM

object_const_def
const LAKEOFRAGEMART_CLERK
const LAKEOFRAGEMART_GRAMPS
const LAKEOFRAGEMART_POKEFAN_F
LakeOfRageMart_MapScripts:
def_scene_scripts
def_callbacks
LakeOfRageMartClerkScript:
opentext
pokemart MARTTYPE_STANDARD, MART_LAKEOFRAGE
closetext
end
LakeOfRageMartPokefanFScript:
jumptextfaceplayer LakeOfRageMartPokefanFText
LakeOfRageMartGrampsScript:
jumptextfaceplayer LakeOfRageMartGrampsText
LakeOfRageMartPokefanFText:
text "This shop sells"
line "so many STONEs!"
para "I'm spoiled for"
line "choice!"
done
LakeOfRageMartGrampsText:
text "The TRADER helped"
line "me evolve my"
cont "RAICHU!"
para "Huh? Sure it does!"
line "Try it yourself!"
done
LakeOfRageMart_MapEvents:
db 0, 0 ; filler
def_warp_events
warp_event 2, 7, LAKE_OF_RAGE, 3
warp_event 3, 7, LAKE_OF_RAGE, 3
def_coord_events
def_bg_events
def_object_events
object_event 1, 3, SPRITE_CLERK, SPRITEMOVEDATA_STANDING_RIGHT, 0, 0, -1, -1, 0, OBJECTTYPE_SCRIPT, 0, LakeOfRageMartClerkScript, -1
object_event 6, 6, SPRITE_POKEFAN_M, SPRITEMOVEDATA_WALK_LEFT_RIGHT, 2, 0, -1, -1, PAL_NPC_RED, OBJECTTYPE_SCRIPT, 0, LakeOfRageMartPokefanFScript, -1
object_event 9, 2, SPRITE_ROCKER, SPRITEMOVEDATA_SPINRANDOM_SLOW, 0, 0, -1, -1, 0, OBJECTTYPE_SCRIPT, 0, LakeOfRageMartGrampsScript, -1