mirror of
https://github.com/thornAvery/jep-hack.git
synced 2026-02-07 08:35:23 +13:00
First Commit
Upload literally everything from the pokecrystal16 expand-move-ID branch
This commit is contained in:
commit
2f8a41f833
4618 changed files with 480386 additions and 0 deletions
130
maps/GoldenrodDeptStoreB1F.asm
Normal file
130
maps/GoldenrodDeptStoreB1F.asm
Normal file
|
|
@ -0,0 +1,130 @@
|
|||
object_const_def
|
||||
const GOLDENRODDEPTSTOREB1F_POKE_BALL1
|
||||
const GOLDENRODDEPTSTOREB1F_POKE_BALL2
|
||||
const GOLDENRODDEPTSTOREB1F_POKE_BALL3
|
||||
const GOLDENRODDEPTSTOREB1F_POKE_BALL4
|
||||
const GOLDENRODDEPTSTOREB1F_BLACK_BELT1
|
||||
const GOLDENRODDEPTSTOREB1F_BLACK_BELT2
|
||||
const GOLDENRODDEPTSTOREB1F_BLACK_BELT3
|
||||
const GOLDENRODDEPTSTOREB1F_MACHOP
|
||||
|
||||
GoldenrodDeptStoreB1F_MapScripts:
|
||||
def_scene_scripts
|
||||
|
||||
def_callbacks
|
||||
callback MAPCALLBACK_TILES, GoldenRodDeptStoreB1FClearBoxesCallback
|
||||
callback MAPCALLBACK_NEWMAP, GoldenRodDeptStoreUnblockCallback
|
||||
|
||||
GoldenRodDeptStoreB1FClearBoxesCallback:
|
||||
checkevent EVENT_RECEIVED_CARD_KEY
|
||||
iftrue .GotCardKey
|
||||
sjump .Continue
|
||||
|
||||
.GotCardKey:
|
||||
changeblock 16, 4, $0d ; floor
|
||||
sjump .Continue
|
||||
|
||||
.Continue:
|
||||
checkevent EVENT_GOLDENROD_DEPT_STORE_B1F_LAYOUT_2
|
||||
iftrue .Layout2
|
||||
checkevent EVENT_GOLDENROD_DEPT_STORE_B1F_LAYOUT_3
|
||||
iftrue .Layout3
|
||||
changeblock 10, 8, $0d ; floor
|
||||
endcallback
|
||||
|
||||
.Layout2:
|
||||
changeblock 4, 10, $0d ; floor
|
||||
endcallback
|
||||
|
||||
.Layout3:
|
||||
changeblock 10, 12, $0d ; floor
|
||||
endcallback
|
||||
|
||||
GoldenRodDeptStoreUnblockCallback:
|
||||
clearevent EVENT_GOLDENROD_UNDERGROUND_WAREHOUSE_BLOCKED_OFF
|
||||
endcallback
|
||||
|
||||
GoldenrodDeptStoreB1FBlackBelt1Script:
|
||||
jumptextfaceplayer GoldenrodDeptStoreB1FBlackBelt1Text
|
||||
|
||||
GoldenrodDeptStoreB1FBlackBelt2Script:
|
||||
jumptextfaceplayer GoldenrodDeptStoreB1FBlackBelt2Text
|
||||
|
||||
GoldenrodDeptStoreB1FBlackBelt3Script:
|
||||
jumptextfaceplayer GoldenrodDeptStoreB1FBlackBelt3Text
|
||||
|
||||
GoldenrodDeptStoreB1FMachopScript:
|
||||
opentext
|
||||
writetext GoldenrodDeptStoreB1FMachokeText
|
||||
cry MACHOKE
|
||||
waitbutton
|
||||
closetext
|
||||
end
|
||||
|
||||
GoldenrodDeptStoreB1FEther:
|
||||
itemball ETHER
|
||||
|
||||
GoldenrodDeptStoreB1FAmuletCoin:
|
||||
itemball AMULET_COIN
|
||||
|
||||
GoldenrodDeptStoreB1FBurnHeal:
|
||||
itemball BURN_HEAL
|
||||
|
||||
GoldenrodDeptStoreB1FUltraBall:
|
||||
itemball ULTRA_BALL
|
||||
|
||||
GoldenrodDeptStoreB1FBlackBelt1Text:
|
||||
text "Hey, kid! You're"
|
||||
line "holding us up!"
|
||||
|
||||
para "Our policy is to"
|
||||
line "work behind the"
|
||||
|
||||
para "scenes where no"
|
||||
line "one can see us!"
|
||||
done
|
||||
|
||||
GoldenrodDeptStoreB1FBlackBelt2Text:
|
||||
text "I lose my passion"
|
||||
line "for work if some-"
|
||||
cont "one's watching."
|
||||
|
||||
para "Come on, kid,"
|
||||
line "scoot!"
|
||||
done
|
||||
|
||||
GoldenrodDeptStoreB1FBlackBelt3Text:
|
||||
text "Oohah! Oohah!"
|
||||
|
||||
para "The stuff on the"
|
||||
line "ground's junk."
|
||||
|
||||
para "Take it if you"
|
||||
line "want it!"
|
||||
done
|
||||
|
||||
GoldenrodDeptStoreB1FMachokeText:
|
||||
text "MACHOKE: Maaacho!"
|
||||
done
|
||||
|
||||
GoldenrodDeptStoreB1F_MapEvents:
|
||||
db 0, 0 ; filler
|
||||
|
||||
def_warp_events
|
||||
warp_event 17, 2, GOLDENROD_UNDERGROUND_WAREHOUSE, 3
|
||||
warp_event 9, 4, GOLDENROD_DEPT_STORE_ELEVATOR, 1
|
||||
warp_event 10, 4, GOLDENROD_DEPT_STORE_ELEVATOR, 2
|
||||
|
||||
def_coord_events
|
||||
|
||||
def_bg_events
|
||||
|
||||
def_object_events
|
||||
object_event 10, 15, SPRITE_POKE_BALL, SPRITEMOVEDATA_STILL, 0, 0, -1, -1, 0, OBJECTTYPE_ITEMBALL, 0, GoldenrodDeptStoreB1FEther, EVENT_GOLDENROD_DEPT_STORE_B1F_ETHER
|
||||
object_event 14, 2, SPRITE_POKE_BALL, SPRITEMOVEDATA_STILL, 0, 0, -1, -1, 0, OBJECTTYPE_ITEMBALL, 0, GoldenrodDeptStoreB1FAmuletCoin, EVENT_GOLDENROD_DEPT_STORE_B1F_AMULET_COIN
|
||||
object_event 6, 3, SPRITE_POKE_BALL, SPRITEMOVEDATA_STILL, 0, 0, -1, -1, 0, OBJECTTYPE_ITEMBALL, 0, GoldenrodDeptStoreB1FBurnHeal, EVENT_GOLDENROD_DEPT_STORE_B1F_BURN_HEAL
|
||||
object_event 15, 15, SPRITE_POKE_BALL, SPRITEMOVEDATA_STILL, 0, 0, -1, -1, 0, OBJECTTYPE_ITEMBALL, 0, GoldenrodDeptStoreB1FUltraBall, EVENT_GOLDENROD_DEPT_STORE_B1F_ULTRA_BALL
|
||||
object_event 9, 10, SPRITE_BLACK_BELT, SPRITEMOVEDATA_WALK_UP_DOWN, 0, 1, -1, -1, PAL_NPC_GREEN, OBJECTTYPE_SCRIPT, 0, GoldenrodDeptStoreB1FBlackBelt1Script, -1
|
||||
object_event 4, 8, SPRITE_BLACK_BELT, SPRITEMOVEDATA_SPINRANDOM_SLOW, 0, 0, -1, -1, PAL_NPC_RED, OBJECTTYPE_SCRIPT, 0, GoldenrodDeptStoreB1FBlackBelt2Script, -1
|
||||
object_event 6, 13, SPRITE_BLACK_BELT, SPRITEMOVEDATA_WALK_LEFT_RIGHT, 1, 0, -1, -1, PAL_NPC_BLUE, OBJECTTYPE_SCRIPT, 0, GoldenrodDeptStoreB1FBlackBelt3Script, -1
|
||||
object_event 7, 7, SPRITE_MACHOP, SPRITEMOVEDATA_POKEMON, 0, 0, -1, -1, PAL_NPC_BLUE, OBJECTTYPE_SCRIPT, 0, GoldenrodDeptStoreB1FMachopScript, -1
|
||||
Loading…
Add table
Add a link
Reference in a new issue