mirror of
https://github.com/chase-manning/pokemon-js.git
synced 2025-11-14 22:28:06 +00:00
✨ add post game data for brock
This commit is contained in:
parent
9a927fb25c
commit
ef7b2933fa
1 changed files with 15 additions and 1 deletions
|
|
@ -1,4 +1,5 @@
|
|||
import { brock, jrTrainerMale } from "../app/npcs";
|
||||
import { ItemType } from "../app/use-item-data";
|
||||
import image from "../assets/map/pewter-city-gym.png";
|
||||
import music from "../assets/music/maps/pokemon-gym.mp3";
|
||||
import { Direction } from "../state/state-types";
|
||||
|
|
@ -86,7 +87,7 @@ const pewterCityGym: MapType = {
|
|||
],
|
||||
outtro: [
|
||||
"I took you for granted!",
|
||||
"As proof of your victory, here's the BOULDERBADGE!",
|
||||
"As proof of your victory, here's the BOULDER BADGE!",
|
||||
"That's an official POKEMON LEAGUE badge!",
|
||||
"Its bearer's POKEMON become more powerful!",
|
||||
"The technique FLASH can now be used any time!",
|
||||
|
|
@ -96,6 +97,19 @@ const pewterCityGym: MapType = {
|
|||
x: 4,
|
||||
y: 1,
|
||||
},
|
||||
postGame: {
|
||||
message: [
|
||||
"Wait! Take this with you!",
|
||||
"A TM contains a technique that can be taught to POKEMON!",
|
||||
"A TM is good only once!",
|
||||
"So when you use one to teach a new technique,",
|
||||
"pick the POKEMON carefully!",
|
||||
"TM34 contains BIDE!",
|
||||
"Your pokemon will absorb damage in battle",
|
||||
"then pay it back double!",
|
||||
],
|
||||
items: [ItemType.BoulderBadge, ItemType.Tm34],
|
||||
},
|
||||
},
|
||||
],
|
||||
};
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue