import from github
This commit is contained in:
118
data/maps/RustboroCity_Gym/map.json
Normal file
118
data/maps/RustboroCity_Gym/map.json
Normal file
@ -0,0 +1,118 @@
|
||||
{
|
||||
"id": "MAP_RUSTBORO_CITY_GYM",
|
||||
"name": "RustboroCity_Gym",
|
||||
"layout": "LAYOUT_RUSTBORO_CITY_GYM",
|
||||
"music": "MUS_GYM",
|
||||
"region_map_section": "MAPSEC_RUSTBORO_CITY",
|
||||
"requires_flash": false,
|
||||
"weather": "WEATHER_NONE",
|
||||
"map_type": "MAP_TYPE_INDOOR",
|
||||
"allow_cycling": false,
|
||||
"allow_escaping": false,
|
||||
"allow_running": false,
|
||||
"show_map_name": false,
|
||||
"battle_scene": "MAP_BATTLE_SCENE_GYM",
|
||||
"connections": null,
|
||||
"object_events": [
|
||||
{
|
||||
"graphics_id": "OBJ_EVENT_GFX_ROXANNE",
|
||||
"x": 5,
|
||||
"y": 2,
|
||||
"elevation": 3,
|
||||
"movement_type": "MOVEMENT_TYPE_FACE_DOWN",
|
||||
"movement_range_x": 0,
|
||||
"movement_range_y": 0,
|
||||
"trainer_type": "TRAINER_TYPE_NONE",
|
||||
"trainer_sight_or_berry_tree_id": "0",
|
||||
"script": "RustboroCity_Gym_EventScript_Roxanne",
|
||||
"flag": "0"
|
||||
},
|
||||
{
|
||||
"graphics_id": "OBJ_EVENT_GFX_YOUNGSTER",
|
||||
"x": 5,
|
||||
"y": 13,
|
||||
"elevation": 3,
|
||||
"movement_type": "MOVEMENT_TYPE_FACE_DOWN",
|
||||
"movement_range_x": 0,
|
||||
"movement_range_y": 0,
|
||||
"trainer_type": "TRAINER_TYPE_NORMAL",
|
||||
"trainer_sight_or_berry_tree_id": "2",
|
||||
"script": "RustboroCity_Gym_EventScript_Josh",
|
||||
"flag": "0"
|
||||
},
|
||||
{
|
||||
"graphics_id": "OBJ_EVENT_GFX_YOUNGSTER",
|
||||
"x": 3,
|
||||
"y": 9,
|
||||
"elevation": 3,
|
||||
"movement_type": "MOVEMENT_TYPE_FACE_LEFT",
|
||||
"movement_range_x": 0,
|
||||
"movement_range_y": 0,
|
||||
"trainer_type": "TRAINER_TYPE_NORMAL",
|
||||
"trainer_sight_or_berry_tree_id": "3",
|
||||
"script": "RustboroCity_Gym_EventScript_Tommy",
|
||||
"flag": "0"
|
||||
},
|
||||
{
|
||||
"graphics_id": "OBJ_EVENT_GFX_MAN_2",
|
||||
"x": 3,
|
||||
"y": 18,
|
||||
"elevation": 3,
|
||||
"movement_type": "MOVEMENT_TYPE_FACE_DOWN",
|
||||
"movement_range_x": 0,
|
||||
"movement_range_y": 0,
|
||||
"trainer_type": "TRAINER_TYPE_NONE",
|
||||
"trainer_sight_or_berry_tree_id": "0",
|
||||
"script": "RustboroCity_Gym_EventScript_GymGuide",
|
||||
"flag": "0"
|
||||
},
|
||||
{
|
||||
"graphics_id": "OBJ_EVENT_GFX_HIKER",
|
||||
"x": 1,
|
||||
"y": 6,
|
||||
"elevation": 3,
|
||||
"movement_type": "MOVEMENT_TYPE_FACE_DOWN",
|
||||
"movement_range_x": 1,
|
||||
"movement_range_y": 1,
|
||||
"trainer_type": "TRAINER_TYPE_NORMAL",
|
||||
"trainer_sight_or_berry_tree_id": "3",
|
||||
"script": "RustboroCity_Gym_EventScript_Marc",
|
||||
"flag": "0"
|
||||
}
|
||||
],
|
||||
"warp_events": [
|
||||
{
|
||||
"x": 5,
|
||||
"y": 19,
|
||||
"elevation": 0,
|
||||
"dest_map": "MAP_RUSTBORO_CITY",
|
||||
"dest_warp_id": 0
|
||||
},
|
||||
{
|
||||
"x": 6,
|
||||
"y": 19,
|
||||
"elevation": 0,
|
||||
"dest_map": "MAP_RUSTBORO_CITY",
|
||||
"dest_warp_id": 0
|
||||
}
|
||||
],
|
||||
"coord_events": [],
|
||||
"bg_events": [
|
||||
{
|
||||
"type": "sign",
|
||||
"x": 2,
|
||||
"y": 18,
|
||||
"elevation": 0,
|
||||
"player_facing_dir": "BG_EVENT_PLAYER_FACING_NORTH",
|
||||
"script": "RustboroCity_Gym_EventScript_LeftGymStatue"
|
||||
},
|
||||
{
|
||||
"type": "sign",
|
||||
"x": 8,
|
||||
"y": 18,
|
||||
"elevation": 0,
|
||||
"player_facing_dir": "BG_EVENT_PLAYER_FACING_NORTH",
|
||||
"script": "RustboroCity_Gym_EventScript_RightGymStatue"
|
||||
}
|
||||
]
|
||||
}
|
283
data/maps/RustboroCity_Gym/scripts.inc
Normal file
283
data/maps/RustboroCity_Gym/scripts.inc
Normal file
@ -0,0 +1,283 @@
|
||||
RustboroCity_Gym_MapScripts::
|
||||
.byte 0
|
||||
|
||||
RustboroCity_Gym_EventScript_Roxanne::
|
||||
trainerbattle_single TRAINER_ROXANNE_1, RustboroCity_Gym_Text_RoxanneIntro, RustboroCity_Gym_Text_RoxanneDefeat, RustboroCity_Gym_EventScript_RoxanneDefeated, NO_MUSIC
|
||||
specialvar VAR_RESULT, ShouldTryRematchBattle
|
||||
goto_if_eq VAR_RESULT, TRUE, RustboroCity_Gym_EventScript_RoxanneRematch
|
||||
goto_if_unset FLAG_RECEIVED_TM39, RustboroCity_Gym_EventScript_GiveRockTomb
|
||||
msgbox RustboroCity_Gym_Text_RoxannePostBattle, MSGBOX_DEFAULT
|
||||
release
|
||||
end
|
||||
|
||||
RustboroCity_Gym_EventScript_RoxanneDefeated::
|
||||
message RustboroCity_Gym_Text_ReceivedStoneBadge
|
||||
waitmessage
|
||||
call Common_EventScript_PlayGymBadgeFanfare
|
||||
msgbox RustboroCity_Gym_Text_StoneBadgeInfoTakeThis, MSGBOX_DEFAULT
|
||||
setflag FLAG_DEFEATED_RUSTBORO_GYM
|
||||
setflag FLAG_BADGE01_GET
|
||||
setvar VAR_RUSTBORO_CITY_STATE, 1
|
||||
addvar VAR_PETALBURG_GYM_STATE, 1
|
||||
setvar VAR_0x8008, 1
|
||||
call Common_EventScript_SetGymTrainers
|
||||
call_if_eq VAR_PETALBURG_GYM_STATE, 6, Common_EventScript_ReadyPetalburgGymForBattle
|
||||
goto RustboroCity_Gym_EventScript_GiveRockTomb
|
||||
end
|
||||
|
||||
RustboroCity_Gym_EventScript_GiveRockTomb::
|
||||
giveitem ITEM_TM39
|
||||
goto_if_eq VAR_RESULT, FALSE, Common_EventScript_ShowBagIsFull
|
||||
setflag FLAG_RECEIVED_TM39
|
||||
msgbox RustboroCity_Gym_Text_ExplainRockTomb, MSGBOX_DEFAULT
|
||||
release
|
||||
end
|
||||
|
||||
RustboroCity_Gym_EventScript_RoxanneRematch::
|
||||
trainerbattle_rematch_double TRAINER_ROXANNE_1, RustboroCity_Gym_Text_RoxannePreRematch, RustboroCity_Gym_Text_RoxanneRematchDefeat, RustboroCity_Gym_Text_RoxanneRematchNeedTwoMons
|
||||
msgbox RustboroCity_Gym_Text_RoxannePostRematch, MSGBOX_AUTOCLOSE
|
||||
end
|
||||
|
||||
RustboroCity_Gym_EventScript_Josh::
|
||||
trainerbattle_single TRAINER_JOSH, RustboroCity_Gym_Text_JoshIntro, RustboroCity_Gym_Text_JoshDefeat
|
||||
msgbox RustboroCity_Gym_Text_JoshPostBattle, MSGBOX_AUTOCLOSE
|
||||
end
|
||||
|
||||
RustboroCity_Gym_EventScript_Tommy::
|
||||
trainerbattle_single TRAINER_TOMMY, RustboroCity_Gym_Text_TommyIntro, RustboroCity_Gym_Text_TommyDefeat
|
||||
msgbox RustboroCity_Gym_Text_TommyPostBattle, MSGBOX_AUTOCLOSE
|
||||
end
|
||||
|
||||
RustboroCity_Gym_EventScript_Marc::
|
||||
trainerbattle_single TRAINER_MARC, RustboroCity_Gym_Text_MarcIntro, RustboroCity_Gym_Text_MarcDefeat
|
||||
msgbox RustboroCity_Gym_Text_MarcPostBattle, MSGBOX_AUTOCLOSE
|
||||
end
|
||||
|
||||
RustboroCity_Gym_EventScript_GymGuide::
|
||||
lock
|
||||
faceplayer
|
||||
goto_if_set FLAG_DEFEATED_RUSTBORO_GYM, RustboroCity_Gym_EventScript_GymGuidePostVictory
|
||||
msgbox RustboroCity_Gym_Text_GymGuideAdvice, MSGBOX_DEFAULT
|
||||
release
|
||||
end
|
||||
|
||||
RustboroCity_Gym_EventScript_GymGuidePostVictory::
|
||||
msgbox RustboroCity_Gym_Text_GymGuidePostVictory, MSGBOX_DEFAULT
|
||||
release
|
||||
end
|
||||
|
||||
RustboroCity_Gym_EventScript_LeftGymStatue::
|
||||
lockall
|
||||
goto_if_set FLAG_BADGE01_GET, RustboroCity_Gym_EventScript_GymStatueCertified
|
||||
goto RustboroCity_Gym_EventScript_GymStatue
|
||||
end
|
||||
|
||||
RustboroCity_Gym_EventScript_RightGymStatue::
|
||||
lockall
|
||||
goto_if_set FLAG_BADGE01_GET, RustboroCity_Gym_EventScript_GymStatueCertified
|
||||
goto RustboroCity_Gym_EventScript_GymStatue
|
||||
end
|
||||
|
||||
RustboroCity_Gym_EventScript_GymStatueCertified::
|
||||
msgbox RustboroCity_Gym_Text_GymStatueCertified, MSGBOX_DEFAULT
|
||||
releaseall
|
||||
end
|
||||
|
||||
RustboroCity_Gym_EventScript_GymStatue::
|
||||
msgbox RustboroCity_Gym_Text_GymStatue, MSGBOX_DEFAULT
|
||||
releaseall
|
||||
end
|
||||
|
||||
RustboroCity_Gym_EventScript_RegisterRoxanne::
|
||||
lockall
|
||||
pokenavcall RustboroCity_Gym_Text_RoxanneRegisterCall
|
||||
waitmessage
|
||||
delay 30
|
||||
playfanfare MUS_REGISTER_MATCH_CALL
|
||||
msgbox RustboroCity_Gym_Text_RegisteredRoxanne, MSGBOX_DEFAULT
|
||||
waitfanfare
|
||||
closemessage
|
||||
delay 30
|
||||
setflag FLAG_ENABLE_ROXANNE_MATCH_CALL
|
||||
clearflag FLAG_ENABLE_ROXANNE_FIRST_CALL
|
||||
releaseall
|
||||
end
|
||||
|
||||
RustboroCity_Gym_Text_GymGuideAdvice:
|
||||
.string "Yo, how's it going?\p"
|
||||
.string "Listen, my friend!\n"
|
||||
.string "Would you like to become the CHAMPION?\p"
|
||||
.string "I'm no TRAINER, not me, but I can\n"
|
||||
.string "sure give you winning advice.\p"
|
||||
.string "That's settled, then! We'll aim for the\n"
|
||||
.string "POKéMON CHAMPIONSHIP together!\p"
|
||||
.string "It's your job as a TRAINER to collect\n"
|
||||
.string "GYM BADGES, am I right?\p"
|
||||
.string "But GYM LEADERS aren't pushovers!\p"
|
||||
.string "And that's where I come in!\n"
|
||||
.string "I'm here to provide expert advice!\p"
|
||||
.string "ROXANNE, the GYM LEADER, is a user\n"
|
||||
.string "of ROCK-type POKéMON.\p"
|
||||
.string "The ROCK type is very durable, but\n"
|
||||
.string "it can't stand WATER-type and\l"
|
||||
.string "GRASS-type moves.\p"
|
||||
.string "Come see me afterwards, if you beat\n"
|
||||
.string "the GYM LEADER.\p"
|
||||
.string "Well, go for it!$"
|
||||
|
||||
RustboroCity_Gym_Text_GymGuidePostVictory:
|
||||
.string "Whoa! What a breathtaking victory!\n"
|
||||
.string "My cheering must've worked!\p"
|
||||
.string "Great!\n"
|
||||
.string "Check your TRAINER CARD.\p"
|
||||
.string "The STONE BADGE you got should be\n"
|
||||
.string "properly recorded on it.\p"
|
||||
.string "In other words…\p"
|
||||
.string "You've climbed the first step on\n"
|
||||
.string "the stairs to the CHAMPIONSHIP!\p"
|
||||
.string "That's got to feel awesome!$"
|
||||
|
||||
RustboroCity_Gym_Text_JoshIntro:
|
||||
.string "Don't take us GYM TRAINERS lightly!\n"
|
||||
.string "I'll show you why we're better!$"
|
||||
|
||||
RustboroCity_Gym_Text_JoshDefeat:
|
||||
.string "You were too good for me…$"
|
||||
|
||||
RustboroCity_Gym_Text_JoshPostBattle:
|
||||
.string "You haven't seen anything of the ROCK\n"
|
||||
.string "type's terrifying power!$"
|
||||
|
||||
RustboroCity_Gym_Text_TommyIntro:
|
||||
.string "If you can't beat me, you won't stand\n"
|
||||
.string "a chance against ROXANNE!$"
|
||||
|
||||
RustboroCity_Gym_Text_TommyDefeat:
|
||||
.string "Wow! You've got some potential!$"
|
||||
|
||||
RustboroCity_Gym_Text_TommyPostBattle:
|
||||
.string "ROXANNE is stronger than me by\n"
|
||||
.string "several times.\p"
|
||||
.string "You'd better be on your guard!$"
|
||||
|
||||
RustboroCity_Gym_Text_MarcIntro:
|
||||
.string "We might be in the middle of town,\n"
|
||||
.string "but so what?\p"
|
||||
.string "My ROCK POKéMON need room to\n"
|
||||
.string "rampage!$"
|
||||
|
||||
RustboroCity_Gym_Text_MarcDefeat:
|
||||
.string "Oh, man oh man!\n"
|
||||
.string "Our challenger is one feisty customer!$"
|
||||
|
||||
RustboroCity_Gym_Text_MarcPostBattle:
|
||||
.string "I have to hand it to our LEADER.\p"
|
||||
.string "It took smarts and sense for her to\n"
|
||||
.string "pick the ROCK type at her young age.$"
|
||||
|
||||
RustboroCity_Gym_Text_RoxanneIntro:
|
||||
.string "Hello, I am ROXANNE, the RUSTBORO\n"
|
||||
.string "POKéMON GYM LEADER.\p"
|
||||
.string "I became a GYM LEADER so that I might\n"
|
||||
.string "apply what I learned at the POKéMON\l"
|
||||
.string "TRAINER'S SCHOOL in battle.\p"
|
||||
.string "Would you kindly demonstrate how you\n"
|
||||
.string "battle, and with which POKéMON?$"
|
||||
|
||||
RustboroCity_Gym_Text_RoxanneDefeat:
|
||||
.string "So…\n"
|
||||
.string "I lost…\p"
|
||||
.string "It seems that I still have much more\n"
|
||||
.string "to learn…\p"
|
||||
.string "I understand.\p"
|
||||
.string "The POKéMON LEAGUE's rules state\n"
|
||||
.string "that TRAINERS are to be given this\l"
|
||||
.string "if they defeat a GYM LEADER.\p"
|
||||
.string "Please accept the official POKéMON\n"
|
||||
.string "LEAGUE STONE BADGE.$"
|
||||
|
||||
RustboroCity_Gym_Text_ReceivedStoneBadge:
|
||||
.string "{PLAYER} received the STONE BADGE\n"
|
||||
.string "from ROXANNE.$"
|
||||
|
||||
RustboroCity_Gym_Text_StoneBadgeInfoTakeThis:
|
||||
.string "The STONE BADGE heightens the ATTACK\n"
|
||||
.string "power of your POKéMON.\p"
|
||||
.string "It also enables them to use the HM move\n"
|
||||
.string "CUT outside of battle.\p"
|
||||
.string "Please take this with you, too.$"
|
||||
|
||||
RustboroCity_Gym_Text_ExplainRockTomb:
|
||||
.string "That TECHNICAL MACHINE, TM39,\n"
|
||||
.string "contains ROCK TOMB.\p"
|
||||
.string "It not only inflicts damage by dropping\n"
|
||||
.string "rocks, it also lowers SPEED.\p"
|
||||
.string "If you use a TM, it instantly teaches\n"
|
||||
.string "the move to a POKéMON.\p"
|
||||
.string "A TM can be used as many times as you'd\n"
|
||||
.string "like, so please enjoy it.$"
|
||||
|
||||
RustboroCity_Gym_Text_RoxannePostBattle:
|
||||
.string "Since you are so strong, you should\n"
|
||||
.string "challenge other GYM LEADERS.\p"
|
||||
.string "By battling many TRAINERS, you should\n"
|
||||
.string "learn many things.$"
|
||||
|
||||
RustboroCity_Gym_Text_GymStatue:
|
||||
.string "RUSTBORO CITY POKéMON GYM$"
|
||||
|
||||
RustboroCity_Gym_Text_GymStatueCertified:
|
||||
.string "RUSTBORO CITY POKéMON GYM\p"
|
||||
.string "ROXANNE'S CERTIFIED TRAINERS:\n"
|
||||
.string "{PLAYER}$"
|
||||
|
||||
RustboroCity_Gym_Text_RoxanneRegisterCall:
|
||||
.string "… … … … … …\n"
|
||||
.string "… … … … … Beep!\p"
|
||||
.string "ROXANNE: Oh, hello, {PLAYER}?\n"
|
||||
.string "This is ROXANNE of RUSTBORO CITY.\p"
|
||||
.string "I heard from BRAWLY that you're\n"
|
||||
.string "moving up through the ranks of\l"
|
||||
.string "TRAINERS at an incredible clip.\p"
|
||||
.string "Well, I'd rather not think that\n"
|
||||
.string "I can't beat you.\p"
|
||||
.string "I promise, I will shape up my GYM\n"
|
||||
.string "so that you may challenge us again.\p"
|
||||
.string "I hope you'll be looking forward to\n"
|
||||
.string "that occasion as much as me!\p"
|
||||
.string "… … … … … …\n"
|
||||
.string "… … … … … Click!$"
|
||||
|
||||
RustboroCity_Gym_Text_RegisteredRoxanne:
|
||||
.string "Registered GYM LEADER ROXANNE\n"
|
||||
.string "in the POKéNAV.$"
|
||||
|
||||
RustboroCity_Gym_Text_RoxannePreRematch:
|
||||
.string "ROXANNE: I'm so glad to see you again.\n"
|
||||
.string "I'm ROXANNE, the GYM LEADER here.\p"
|
||||
.string "I'm sure we've both experienced many\n"
|
||||
.string "battles since we last met.\p"
|
||||
.string "I would like to see how much better\n"
|
||||
.string "we've become. Let us battle!$"
|
||||
|
||||
RustboroCity_Gym_Text_RoxanneRematchDefeat:
|
||||
.string "Grr…\n"
|
||||
.string "Again, I have lost…$"
|
||||
|
||||
RustboroCity_Gym_Text_RoxannePostRematch:
|
||||
.string "ROXANNE: I still have much to learn\n"
|
||||
.string "when it comes to battling POKéMON.\p"
|
||||
.string "That awareness makes me love battling\n"
|
||||
.string "all that much more!$"
|
||||
|
||||
RustboroCity_Gym_Text_RoxanneRematchNeedTwoMons:
|
||||
.string "ROXANNE: I'm so glad to see you again.\n"
|
||||
.string "I'm ROXANNE, the GYM LEADER here.\p"
|
||||
.string "I'm sure we've both experienced many\n"
|
||||
.string "battles since we last met.\p"
|
||||
.string "I would like to see how much better\n"
|
||||
.string "we've become…\p"
|
||||
.string "Oh, no…\n"
|
||||
.string "You only have one POKéMON with you?\p"
|
||||
.string "Please return with at least one more\n"
|
||||
.string "POKéMON.$"
|
Reference in New Issue
Block a user