import from github
This commit is contained in:
62
data/maps/MossdeepCity_House1/map.json
Normal file
62
data/maps/MossdeepCity_House1/map.json
Normal file
@ -0,0 +1,62 @@
|
||||
{
|
||||
"id": "MAP_MOSSDEEP_CITY_HOUSE1",
|
||||
"name": "MossdeepCity_House1",
|
||||
"layout": "LAYOUT_HOUSE2",
|
||||
"music": "MUS_RUSTBORO",
|
||||
"region_map_section": "MAPSEC_MOSSDEEP_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_BLACK_BELT",
|
||||
"x": 3,
|
||||
"y": 3,
|
||||
"elevation": 3,
|
||||
"movement_type": "MOVEMENT_TYPE_WANDER_UP_AND_DOWN",
|
||||
"movement_range_x": 1,
|
||||
"movement_range_y": 1,
|
||||
"trainer_type": "TRAINER_TYPE_NONE",
|
||||
"trainer_sight_or_berry_tree_id": "0",
|
||||
"script": "MossdeepCity_House1_EventScript_BlackBelt",
|
||||
"flag": "0"
|
||||
},
|
||||
{
|
||||
"graphics_id": "OBJ_EVENT_GFX_WOMAN_2",
|
||||
"x": 7,
|
||||
"y": 4,
|
||||
"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": "MossdeepCity_House1_EventScript_Woman",
|
||||
"flag": "0"
|
||||
}
|
||||
],
|
||||
"warp_events": [
|
||||
{
|
||||
"x": 3,
|
||||
"y": 7,
|
||||
"elevation": 0,
|
||||
"dest_map": "MAP_MOSSDEEP_CITY",
|
||||
"dest_warp_id": 0
|
||||
},
|
||||
{
|
||||
"x": 4,
|
||||
"y": 7,
|
||||
"elevation": 0,
|
||||
"dest_map": "MAP_MOSSDEEP_CITY",
|
||||
"dest_warp_id": 0
|
||||
}
|
||||
],
|
||||
"coord_events": [],
|
||||
"bg_events": []
|
||||
}
|
41
data/maps/MossdeepCity_House1/scripts.inc
Normal file
41
data/maps/MossdeepCity_House1/scripts.inc
Normal file
@ -0,0 +1,41 @@
|
||||
MossdeepCity_House1_MapScripts::
|
||||
.byte 0
|
||||
|
||||
MossdeepCity_House1_EventScript_BlackBelt::
|
||||
lock
|
||||
faceplayer
|
||||
bufferleadmonspeciesname STR_VAR_1
|
||||
msgbox MossdeepCity_House1_Text_HmmYourPokemon, MSGBOX_DEFAULT
|
||||
specialvar VAR_RESULT, GetPokeblockNameByMonNature
|
||||
goto_if_eq VAR_RESULT, 0, MossdeepCity_House1_EventScript_NeutralNature
|
||||
msgbox MossdeepCity_House1_Text_ItLikesXPokeblocks, MSGBOX_DEFAULT
|
||||
release
|
||||
end
|
||||
|
||||
MossdeepCity_House1_EventScript_NeutralNature::
|
||||
msgbox MossdeepCity_House1_Text_DoesntLikeOrDislikePokeblocks, MSGBOX_DEFAULT
|
||||
release
|
||||
end
|
||||
|
||||
MossdeepCity_House1_EventScript_Woman::
|
||||
msgbox MossdeepCity_House1_Text_HusbandCanTellPokeblockMonLikes, MSGBOX_NPC
|
||||
end
|
||||
|
||||
MossdeepCity_House1_Text_HmmYourPokemon:
|
||||
.string "Hmm!\n"
|
||||
.string "Your {STR_VAR_1}…$"
|
||||
|
||||
MossdeepCity_House1_Text_ItLikesXPokeblocks:
|
||||
.string "It likes {STR_VAR_1}S,\n"
|
||||
.string "doesn't it?\p"
|
||||
.string "No, I'm positive of it! It definitely\n"
|
||||
.string "likes {STR_VAR_1}S!$"
|
||||
|
||||
MossdeepCity_House1_Text_DoesntLikeOrDislikePokeblocks:
|
||||
.string "It doesn't appear to like or dislike\n"
|
||||
.string "any {POKEBLOCK}S.$"
|
||||
|
||||
MossdeepCity_House1_Text_HusbandCanTellPokeblockMonLikes:
|
||||
.string "My husband can tell what kind of\n"
|
||||
.string "{POKEBLOCK}S a POKéMON likes at a glance.$"
|
||||
|
Reference in New Issue
Block a user