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,75 @@
{
"id": "MAP_MAUVILLE_CITY_MART",
"name": "MauvilleCity_Mart",
"layout": "LAYOUT_MART",
"music": "MUS_POKE_MART",
"region_map_section": "MAPSEC_MAUVILLE_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_MART_EMPLOYEE",
"x": 1,
"y": 3,
"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": "MauvilleCity_Mart_EventScript_Clerk",
"flag": "0"
},
{
"graphics_id": "OBJ_EVENT_GFX_EXPERT_M",
"x": 5,
"y": 4,
"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": "MauvilleCity_Mart_EventScript_ExpertM",
"flag": "0"
},
{
"graphics_id": "OBJ_EVENT_GFX_MAN_3",
"x": 5,
"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": "MauvilleCity_Mart_EventScript_Man",
"flag": "0"
}
],
"warp_events": [
{
"x": 3,
"y": 7,
"elevation": 0,
"dest_map": "MAP_MAUVILLE_CITY",
"dest_warp_id": 3
},
{
"x": 4,
"y": 7,
"elevation": 0,
"dest_map": "MAP_MAUVILLE_CITY",
"dest_warp_id": 3
}
],
"coord_events": [],
"bg_events": []
}

View File

@ -0,0 +1,35 @@
MauvilleCity_Mart_MapScripts::
.byte 0
MauvilleCity_Mart_EventScript_Clerk::
lock
faceplayer
message gText_HowMayIServeYou
waitmessage
pokemart 0
msgbox gText_PleaseComeAgain, MSGBOX_DEFAULT
release
end
MauvilleCity_Mart_EventScript_ExpertM::
msgbox MauvilleCity_Mart_Text_ItemsToTemporarilyElevateStats, MSGBOX_NPC
end
MauvilleCity_Mart_EventScript_Man::
msgbox MauvilleCity_Mart_Text_DecisionsDetermineBattle, MSGBOX_NPC
end
MauvilleCity_Mart_Text_ItemsToTemporarilyElevateStats:
.string "There are items that temporarily\n"
.string "elevate the stats of POKéMON.\p"
.string "The ones I know you use in battle\n"
.string "are X ATTACK and X DEFEND…\p"
.string "I do believe that there are others\n"
.string "like them.$"
MauvilleCity_Mart_Text_DecisionsDetermineBattle:
.string "Use a certain move, or use an item\n"
.string "instead…\p"
.string "The TRAINER's decisions determine how\n"
.string "battles turn out, I think.$"