import from github

This commit is contained in:
2022-05-19 17:14:13 +00:00
parent 5247c34f50
commit ab32b30591
12612 changed files with 1905035 additions and 83 deletions

View File

@ -0,0 +1,139 @@
{
"id": "MAP_PACIFIDLOG_TOWN",
"name": "PacifidlogTown",
"layout": "LAYOUT_PACIFIDLOG_TOWN",
"music": "MUS_LILYCOVE",
"region_map_section": "MAPSEC_PACIFIDLOG_TOWN",
"requires_flash": false,
"weather": "WEATHER_SUNNY",
"map_type": "MAP_TYPE_TOWN",
"allow_cycling": true,
"allow_escaping": false,
"allow_running": true,
"show_map_name": true,
"battle_scene": "MAP_BATTLE_SCENE_NORMAL",
"connections": [
{
"direction": "left",
"offset": 0,
"map": "MAP_ROUTE132"
},
{
"direction": "right",
"offset": 0,
"map": "MAP_ROUTE131"
}
],
"object_events": [
{
"graphics_id": "OBJ_EVENT_GFX_GIRL_1",
"x": 10,
"y": 23,
"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": "PacifidlogTown_EventScript_Girl",
"flag": "0"
},
{
"graphics_id": "OBJ_EVENT_GFX_FISHERMAN",
"x": 11,
"y": 14,
"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": "PacifidlogTown_EventScript_Fisherman",
"flag": "0"
},
{
"graphics_id": "OBJ_EVENT_GFX_NINJA_BOY",
"x": 9,
"y": 16,
"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": "PacifidlogTown_EventScript_NinjaBoy",
"flag": "0"
}
],
"warp_events": [
{
"x": 8,
"y": 15,
"elevation": 0,
"dest_map": "MAP_PACIFIDLOG_TOWN_POKEMON_CENTER_1F",
"dest_warp_id": 0
},
{
"x": 16,
"y": 13,
"elevation": 0,
"dest_map": "MAP_PACIFIDLOG_TOWN_HOUSE1",
"dest_warp_id": 0
},
{
"x": 3,
"y": 22,
"elevation": 0,
"dest_map": "MAP_PACIFIDLOG_TOWN_HOUSE2",
"dest_warp_id": 0
},
{
"x": 12,
"y": 24,
"elevation": 0,
"dest_map": "MAP_PACIFIDLOG_TOWN_HOUSE3",
"dest_warp_id": 0
},
{
"x": 2,
"y": 12,
"elevation": 0,
"dest_map": "MAP_PACIFIDLOG_TOWN_HOUSE4",
"dest_warp_id": 0
},
{
"x": 17,
"y": 21,
"elevation": 0,
"dest_map": "MAP_PACIFIDLOG_TOWN_HOUSE5",
"dest_warp_id": 0
}
],
"coord_events": [],
"bg_events": [
{
"type": "sign",
"x": 9,
"y": 15,
"elevation": 0,
"player_facing_dir": "BG_EVENT_PLAYER_FACING_NORTH",
"script": "Common_EventScript_ShowPokemonCenterSign"
},
{
"type": "sign",
"x": 7,
"y": 16,
"elevation": 0,
"player_facing_dir": "BG_EVENT_PLAYER_FACING_ANY",
"script": "PacifidlogTown_EventScript_TownSign"
},
{
"type": "sign",
"x": 10,
"y": 15,
"elevation": 0,
"player_facing_dir": "BG_EVENT_PLAYER_FACING_NORTH",
"script": "Common_EventScript_ShowPokemonCenterSign"
}
]
}

View File

@ -0,0 +1,54 @@
PacifidlogTown_MapScripts::
map_script MAP_SCRIPT_ON_TRANSITION, PacifidlogTown_OnTransition
map_script MAP_SCRIPT_ON_RESUME, PacifidlogTown_OnResume
.byte 0
PacifidlogTown_OnTransition:
setflag FLAG_VISITED_PACIFIDLOG_TOWN
end
PacifidlogTown_OnResume:
setstepcallback STEP_CB_PACIFIDLOG_BRIDGE
end
PacifidlogTown_EventScript_NinjaBoy::
msgbox PacifidlogTown_Text_NeatHousesOnWater, MSGBOX_NPC
end
PacifidlogTown_EventScript_Girl::
msgbox PacifidlogTown_Text_FastRunningCurrent, MSGBOX_NPC
end
PacifidlogTown_EventScript_Fisherman::
msgbox PacifidlogTown_Text_SkyPillarTooScary, MSGBOX_NPC
end
PacifidlogTown_EventScript_TownSign::
msgbox PacifidlogTown_Text_TownSign, MSGBOX_SIGN
end
PacifidlogTown_Text_FastRunningCurrent:
.string "The sea between PACIFIDLOG and\n"
.string "SLATEPORT has a fast-running tide.\p"
.string "If you decide to SURF, you could end\n"
.string "up swept away somewhere else.$"
PacifidlogTown_Text_NeatHousesOnWater:
.string "See, isn't it neat?\n"
.string "These houses are on water!\p"
.string "I was born here!$"
PacifidlogTown_Text_SkyPillarTooScary:
.string "The SKY PILLAR?\p"
.string "…Oh, you must mean that tall, tall\n"
.string "tower a little further out.\p"
.string "If you asked me, I wouldn't climb it.\n"
.string "It's too scary to get up that high.\p"
.string "Life at sea level in PACIFIDLOG,\n"
.string "that suits me fine.$"
PacifidlogTown_Text_TownSign:
.string "PACIFIDLOG TOWN\p"
.string "“Where the morning sun smiles upon\n"
.string "the waters.”$"