diff options
author | GriffinR <griffin.g.richards@gmail.com> | 2021-10-24 15:50:39 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-10-24 15:50:39 -0400 |
commit | ab802649218507237cd2c07e318ef65e1caca5fe (patch) | |
tree | 48104eb5c96c07611ba511f11fc56e9cce6404d6 /data/scripts/gift_altering_cave.inc | |
parent | 3834cc2957b27c771c59027935b0b3a86a19b273 (diff) | |
parent | 6067aa65b4d16649785f39fc2e8ff253abb34327 (diff) |
Merge pull request #1519 from GriffinRichards/doc-mgift
Document Mystery Gift
Diffstat (limited to 'data/scripts/gift_altering_cave.inc')
-rw-r--r-- | data/scripts/gift_altering_cave.inc | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/data/scripts/gift_altering_cave.inc b/data/scripts/gift_altering_cave.inc new file mode 100644 index 000000000..8761b5fa4 --- /dev/null +++ b/data/scripts/gift_altering_cave.inc @@ -0,0 +1,24 @@ +MysteryGiftScript_AlteringCave:: + setvaddress MysteryGiftScript_AlteringCave + addvar VAR_ALTERING_CAVE_WILD_SET, 1 + compare VAR_ALTERING_CAVE_WILD_SET, 10 + vgoto_if_ne MysteryGiftScript_AlteringCave_ + setvar VAR_ALTERING_CAVE_WILD_SET, 0 +MysteryGiftScript_AlteringCave_: + lock + faceplayer + vmessage sText_MysteryGiftAlteringCave + waitmessage + waitbuttonpress + release + end + +sText_MysteryGiftAlteringCave:: + .string "Thank you for using the MYSTERY\n" + .string "GIFT System.\p" + .string "There appears to be a rumor about\n" + .string "rare POKéMON sightings.\p" + .string "The sightings reportedly came from\n" + .string "the ALTERING CAVE on ROUTE 103.\p" + .string "Perhaps it would be worthwhile for\n" + .string "you to investigate this rumor.$" |