import from github
This commit is contained in:
75
data/maps/RustboroCity_House3/map.json
Normal file
75
data/maps/RustboroCity_House3/map.json
Normal file
@ -0,0 +1,75 @@
|
||||
{
|
||||
"id": "MAP_RUSTBORO_CITY_HOUSE3",
|
||||
"name": "RustboroCity_House3",
|
||||
"layout": "LAYOUT_RUSTBORO_CITY_HOUSE",
|
||||
"music": "MUS_RUSTBORO",
|
||||
"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_NORMAL",
|
||||
"connections": null,
|
||||
"object_events": [
|
||||
{
|
||||
"graphics_id": "OBJ_EVENT_GFX_OLD_MAN",
|
||||
"x": 4,
|
||||
"y": 5,
|
||||
"elevation": 3,
|
||||
"movement_type": "MOVEMENT_TYPE_FACE_RIGHT",
|
||||
"movement_range_x": 0,
|
||||
"movement_range_y": 0,
|
||||
"trainer_type": "TRAINER_TYPE_NONE",
|
||||
"trainer_sight_or_berry_tree_id": "0",
|
||||
"script": "RustboroCity_House3_EventScript_OldMan",
|
||||
"flag": "0"
|
||||
},
|
||||
{
|
||||
"graphics_id": "OBJ_EVENT_GFX_OLD_WOMAN",
|
||||
"x": 7,
|
||||
"y": 5,
|
||||
"elevation": 3,
|
||||
"movement_type": "MOVEMENT_TYPE_FACE_LEFT",
|
||||
"movement_range_x": 0,
|
||||
"movement_range_y": 0,
|
||||
"trainer_type": "TRAINER_TYPE_NONE",
|
||||
"trainer_sight_or_berry_tree_id": "0",
|
||||
"script": "RustboroCity_House3_EventScript_OldWoman",
|
||||
"flag": "0"
|
||||
},
|
||||
{
|
||||
"graphics_id": "OBJ_EVENT_GFX_PIKACHU",
|
||||
"x": 4,
|
||||
"y": 4,
|
||||
"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_House3_EventScript_Pekachu",
|
||||
"flag": "0"
|
||||
}
|
||||
],
|
||||
"warp_events": [
|
||||
{
|
||||
"x": 5,
|
||||
"y": 8,
|
||||
"elevation": 0,
|
||||
"dest_map": "MAP_RUSTBORO_CITY",
|
||||
"dest_warp_id": 11
|
||||
},
|
||||
{
|
||||
"x": 6,
|
||||
"y": 8,
|
||||
"elevation": 0,
|
||||
"dest_map": "MAP_RUSTBORO_CITY",
|
||||
"dest_warp_id": 11
|
||||
}
|
||||
],
|
||||
"coord_events": [],
|
||||
"bg_events": []
|
||||
}
|
37
data/maps/RustboroCity_House3/scripts.inc
Normal file
37
data/maps/RustboroCity_House3/scripts.inc
Normal file
@ -0,0 +1,37 @@
|
||||
RustboroCity_House3_MapScripts::
|
||||
.byte 0
|
||||
|
||||
RustboroCity_House3_EventScript_OldMan::
|
||||
msgbox RustboroCity_House3_Text_IGivePerfectlySuitedNicknames, MSGBOX_NPC
|
||||
end
|
||||
|
||||
RustboroCity_House3_EventScript_OldWoman::
|
||||
msgbox RustboroCity_House3_Text_NamingPikachuPekachu, MSGBOX_NPC
|
||||
end
|
||||
|
||||
@ Misspelling on purpose, see nickname
|
||||
RustboroCity_House3_EventScript_Pekachu::
|
||||
lock
|
||||
faceplayer
|
||||
waitse
|
||||
playmoncry SPECIES_PIKACHU, CRY_MODE_NORMAL
|
||||
msgbox RustboroCity_House3_Text_Pekachu, MSGBOX_DEFAULT
|
||||
waitmoncry
|
||||
release
|
||||
end
|
||||
|
||||
RustboroCity_House3_Text_IGivePerfectlySuitedNicknames:
|
||||
.string "For my own POKéMON, I give them\n"
|
||||
.string "perfectly suited nicknames!\p"
|
||||
.string "It's my expression of, uh…\n"
|
||||
.string "originality, yes, that's it!$"
|
||||
|
||||
RustboroCity_House3_Text_NamingPikachuPekachu:
|
||||
.string "But giving the name PEKACHU to\n"
|
||||
.string "a PIKACHU? It seems pointless.\p"
|
||||
.string "I suppose it is good to use a name\n"
|
||||
.string "that's easy to understand, but…$"
|
||||
|
||||
RustboroCity_House3_Text_Pekachu:
|
||||
.string "PEKACHU: Peka!$"
|
||||
|
Reference in New Issue
Block a user