pokecrystal-board/maps/BlackthornMart.asm

62 lines
1.5 KiB
NASM
Raw Normal View History

2018-01-31 08:38:45 -08:00
const_def 2 ; object constants
2015-11-26 21:22:14 -08:00
const BLACKTHORNMART_CLERK
const BLACKTHORNMART_COOLTRAINER_M
const BLACKTHORNMART_BLACK_BELT
BlackthornMart_MapScripts:
db 0 ; scene scripts
db 0 ; callbacks
2017-12-17 16:48:04 -08:00
BlackthornMartClerkScript:
2015-12-09 15:25:44 -08:00
opentext
2015-11-02 14:38:08 -08:00
pokemart MARTTYPE_STANDARD, MART_BLACKTHORN
2015-11-25 07:16:29 -08:00
closetext
end
2017-12-17 16:48:04 -08:00
BlackthornMartCooltrainerMScript:
jumptextfaceplayer BlackthornMartCooltrainerMText
2017-12-17 16:48:04 -08:00
BlackthornMartBlackBeltScript:
jumptextfaceplayer BlackthornMartBlackBeltText
2017-12-17 16:48:04 -08:00
BlackthornMartCooltrainerMText:
text "You can't buy MAX"
line "REVIVE, but it"
para "fully restores a"
line "fainted #MON."
para "Beware--it won't"
line "restore PP, the"
para "POWER POINTS"
line "needed for moves."
done
2017-12-17 16:48:04 -08:00
BlackthornMartBlackBeltText:
text "MAX REPEL keeps"
line "weak #MON away"
cont "from you."
para "It's the longest"
line "lasting of the"
cont "REPEL sprays."
done
BlackthornMart_MapEvents:
db 0, 0 ; filler
db 2 ; warp events
2018-02-01 19:22:07 -08:00
warp_event 2, 7, BLACKTHORN_CITY, 4
warp_event 3, 7, BLACKTHORN_CITY, 4
db 0 ; coord events
db 0 ; bg events
db 3 ; object events
2018-02-01 19:22:07 -08:00
object_event 1, 3, SPRITE_CLERK, SPRITEMOVEDATA_STANDING_RIGHT, 0, 0, -1, -1, 0, OBJECTTYPE_SCRIPT, 0, BlackthornMartClerkScript, -1
object_event 7, 6, SPRITE_COOLTRAINER_M, SPRITEMOVEDATA_WALK_LEFT_RIGHT, 2, 0, -1, -1, 0, OBJECTTYPE_SCRIPT, 0, BlackthornMartCooltrainerMScript, -1
object_event 5, 2, SPRITE_BLACK_BELT, SPRITEMOVEDATA_STANDING_DOWN, 0, 0, -1, -1, PAL_NPC_GREEN, OBJECTTYPE_SCRIPT, 0, BlackthornMartBlackBeltScript, -1