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,62 @@
{
"id": "MAP_VERDANTURF_TOWN_FRIENDSHIP_RATERS_HOUSE",
"name": "VerdanturfTown_FriendshipRatersHouse",
"layout": "LAYOUT_HOUSE2",
"music": "MUS_VERDANTURF",
"region_map_section": "MAPSEC_VERDANTURF_TOWN",
"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_WOMAN_2",
"x": 3,
"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": "VerdanturfTown_FriendshipRatersHouse_EventScript_FriendshipRater",
"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": "VerdanturfTown_FriendshipRatersHouse_EventScript_Pikachu",
"flag": "0"
}
],
"warp_events": [
{
"x": 3,
"y": 7,
"elevation": 0,
"dest_map": "MAP_VERDANTURF_TOWN",
"dest_warp_id": 5
},
{
"x": 4,
"y": 7,
"elevation": 0,
"dest_map": "MAP_VERDANTURF_TOWN",
"dest_warp_id": 5
}
],
"coord_events": [],
"bg_events": []
}

View File

@ -0,0 +1,104 @@
VerdanturfTown_FriendshipRatersHouse_MapScripts::
.byte 0
VerdanturfTown_FriendshipRatersHouse_EventScript_FriendshipRater::
lock
faceplayer
msgbox VerdanturfTown_FriendshipRatersHouse_Text_SeeHowMuchPokemonLikesYou, MSGBOX_DEFAULT
specialvar VAR_RESULT, GetLeadMonFriendshipScore
switch VAR_RESULT
case 0, VerdanturfTown_FriendshipRatersHouse_EventScript_DetestsYou
case 1, VerdanturfTown_FriendshipRatersHouse_EventScript_VeryWary
case 2, VerdanturfTown_FriendshipRatersHouse_EventScript_NotUsedToYou
case 3, VerdanturfTown_FriendshipRatersHouse_EventScript_GettingUsedToYou
case 4, VerdanturfTown_FriendshipRatersHouse_EventScript_LikesYouQuiteALot
case 5, VerdanturfTown_FriendshipRatersHouse_EventScript_VeryHappy
case 6, VerdanturfTown_FriendshipRatersHouse_EventScript_AdoresYou
release
end
VerdanturfTown_FriendshipRatersHouse_EventScript_DetestsYou::
msgbox VerdanturfTown_FriendshipRatersHouse_Text_DetestsYou, MSGBOX_DEFAULT
release
end
VerdanturfTown_FriendshipRatersHouse_EventScript_VeryWary::
msgbox VerdanturfTown_FriendshipRatersHouse_Text_VeryWary, MSGBOX_DEFAULT
release
end
VerdanturfTown_FriendshipRatersHouse_EventScript_NotUsedToYou::
msgbox VerdanturfTown_FriendshipRatersHouse_Text_NotUsedToYou, MSGBOX_DEFAULT
release
end
VerdanturfTown_FriendshipRatersHouse_EventScript_GettingUsedToYou::
msgbox VerdanturfTown_FriendshipRatersHouse_Text_GettingUsedToYou, MSGBOX_DEFAULT
release
end
VerdanturfTown_FriendshipRatersHouse_EventScript_LikesYouQuiteALot::
msgbox VerdanturfTown_FriendshipRatersHouse_Text_LikesYouQuiteALot, MSGBOX_DEFAULT
release
end
VerdanturfTown_FriendshipRatersHouse_EventScript_VeryHappy::
msgbox VerdanturfTown_FriendshipRatersHouse_Text_VeryHappy, MSGBOX_DEFAULT
release
end
VerdanturfTown_FriendshipRatersHouse_EventScript_AdoresYou::
msgbox VerdanturfTown_FriendshipRatersHouse_Text_AdoresYou, MSGBOX_DEFAULT
release
end
VerdanturfTown_FriendshipRatersHouse_EventScript_Pikachu::
lock
faceplayer
waitse
playmoncry SPECIES_PIKACHU, CRY_MODE_NORMAL
msgbox VerdanturfTown_FriendshipRatersHouse_Text_Pikachu, MSGBOX_DEFAULT
waitmoncry
release
end
VerdanturfTown_FriendshipRatersHouse_Text_SeeHowMuchPokemonLikesYou:
.string "Let me see your POKéMON.\n"
.string "I'll check to see how much it likes you.\p"
.string "Oh.\n"
.string "Your POKéMON…$"
VerdanturfTown_FriendshipRatersHouse_Text_AdoresYou:
.string "It adores you.\n"
.string "It can't possibly love you any more.\l"
.string "I even feel happy seeing it.$"
VerdanturfTown_FriendshipRatersHouse_Text_VeryHappy:
.string "It seems to be very happy.\n"
.string "It obviously likes you a whole lot.$"
VerdanturfTown_FriendshipRatersHouse_Text_LikesYouQuiteALot:
.string "It likes you quite a lot.\n"
.string "It seems to want to be babied a little.$"
VerdanturfTown_FriendshipRatersHouse_Text_GettingUsedToYou:
.string "It's getting used to you.\n"
.string "It seems to believe in you.$"
VerdanturfTown_FriendshipRatersHouse_Text_NotUsedToYou:
.string "It's not very used to you yet.\n"
.string "It neither loves nor hates you.$"
VerdanturfTown_FriendshipRatersHouse_Text_VeryWary:
.string "It's very wary.\n"
.string "It has scary viciousness in its eyes.\l"
.string "It doesn't like you much at all.$"
VerdanturfTown_FriendshipRatersHouse_Text_DetestsYou:
.string "This is a little hard for me to say…\p"
.string "Your POKéMON simply detests you.\n"
.string "Doesn't that make you uncomfortable?$"
VerdanturfTown_FriendshipRatersHouse_Text_Pikachu:
.string "PIKACHU: Pika pika!$"