import from github
This commit is contained in:
62
data/maps/RustboroCity_CuttersHouse/map.json
Normal file
62
data/maps/RustboroCity_CuttersHouse/map.json
Normal file
@ -0,0 +1,62 @@
|
||||
{
|
||||
"id": "MAP_RUSTBORO_CITY_CUTTERS_HOUSE",
|
||||
"name": "RustboroCity_CuttersHouse",
|
||||
"layout": "LAYOUT_RUSTBORO_CITY_CUTTERS_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_POKEFAN_M",
|
||||
"x": 7,
|
||||
"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_CuttersHouse_EventScript_Cutter",
|
||||
"flag": "0"
|
||||
},
|
||||
{
|
||||
"graphics_id": "OBJ_EVENT_GFX_LASS",
|
||||
"x": 9,
|
||||
"y": 2,
|
||||
"elevation": 3,
|
||||
"movement_type": "MOVEMENT_TYPE_WANDER_LEFT_AND_RIGHT",
|
||||
"movement_range_x": 1,
|
||||
"movement_range_y": 0,
|
||||
"trainer_type": "TRAINER_TYPE_NONE",
|
||||
"trainer_sight_or_berry_tree_id": "0",
|
||||
"script": "RustboroCity_CuttersHouse_EventScript_Lass",
|
||||
"flag": "0"
|
||||
}
|
||||
],
|
||||
"warp_events": [
|
||||
{
|
||||
"x": 5,
|
||||
"y": 8,
|
||||
"elevation": 0,
|
||||
"dest_map": "MAP_RUSTBORO_CITY",
|
||||
"dest_warp_id": 8
|
||||
},
|
||||
{
|
||||
"x": 6,
|
||||
"y": 8,
|
||||
"elevation": 0,
|
||||
"dest_map": "MAP_RUSTBORO_CITY",
|
||||
"dest_warp_id": 8
|
||||
}
|
||||
],
|
||||
"coord_events": [],
|
||||
"bg_events": []
|
||||
}
|
52
data/maps/RustboroCity_CuttersHouse/scripts.inc
Normal file
52
data/maps/RustboroCity_CuttersHouse/scripts.inc
Normal file
@ -0,0 +1,52 @@
|
||||
RustboroCity_CuttersHouse_MapScripts::
|
||||
.byte 0
|
||||
|
||||
RustboroCity_CuttersHouse_EventScript_Cutter::
|
||||
lock
|
||||
faceplayer
|
||||
goto_if_set FLAG_RECEIVED_HM01, RustboroCity_CuttersHouse_EventScript_ExplainCut
|
||||
msgbox RustboroCity_CuttersHouse_Text_YouCanPutThisHMToGoodUse, MSGBOX_DEFAULT
|
||||
giveitem ITEM_HM01
|
||||
setflag FLAG_RECEIVED_HM01
|
||||
msgbox RustboroCity_CuttersHouse_Text_ExplainCut, MSGBOX_DEFAULT
|
||||
release
|
||||
end
|
||||
|
||||
RustboroCity_CuttersHouse_EventScript_ExplainCut::
|
||||
msgbox RustboroCity_CuttersHouse_Text_ExplainCut, MSGBOX_DEFAULT
|
||||
release
|
||||
end
|
||||
|
||||
RustboroCity_CuttersHouse_EventScript_Lass::
|
||||
msgbox RustboroCity_CuttersHouse_Text_DadHelpedClearLandOfTrees, MSGBOX_NPC
|
||||
end
|
||||
|
||||
RustboroCity_CuttersHouse_Text_YouCanPutThisHMToGoodUse:
|
||||
.string "That determined expression…\n"
|
||||
.string "That limber way you move…\l"
|
||||
.string "And your well-trained POKéMON…\p"
|
||||
.string "You're obviously a skilled TRAINER!\p"
|
||||
.string "No, wait, don't say a word.\n"
|
||||
.string "I can tell just by looking at you.\p"
|
||||
.string "I'm sure that you can put this\n"
|
||||
.string "HIDDEN MACHINE to good use.\p"
|
||||
.string "No need to be modest or shy.\n"
|
||||
.string "Go on, take it!$"
|
||||
|
||||
RustboroCity_CuttersHouse_Text_ExplainCut:
|
||||
.string "That HIDDEN MACHINE, or HM for\n"
|
||||
.string "short, is CUT.\p"
|
||||
.string "An HM move is one that can be used\n"
|
||||
.string "by POKéMON outside of battle.\p"
|
||||
.string "Any POKéMON that's learned CUT can\n"
|
||||
.string "chop down thin trees if the TRAINER\l"
|
||||
.string "has earned the STONE BADGE.\p"
|
||||
.string "And, unlike a TM, an HM can be used\n"
|
||||
.string "more than once.$"
|
||||
|
||||
RustboroCity_CuttersHouse_Text_DadHelpedClearLandOfTrees:
|
||||
.string "When they were expanding the city of\n"
|
||||
.string "RUSTBORO, my dad helped out.\p"
|
||||
.string "He made his POKéMON use CUT to clear\n"
|
||||
.string "the land of trees.$"
|
||||
|
Reference in New Issue
Block a user