Adjust wording

This commit is contained in:
Ketchetwahmeegwun T. Southall 2022-01-30 15:13:18 -08:00
parent 931def9b96
commit f94293f5c0
2 changed files with 3 additions and 3 deletions

View File

@ -52,11 +52,11 @@ export function GameState(ctx: ContextI, selectedAnimal: string, selectedSegment
gameOverBackground.tint = 0x111111 gameOverBackground.tint = 0x111111
gameOverBackground.alpha = 0.75 gameOverBackground.alpha = 0.75
let gameOverTitle = new PIXI.Text('You have succumbed...', bodyTextStyle()) let gameOverTitle = new PIXI.Text('You Have Been Hunted', bodyTextStyle())
let gameOverKills = new PIXI.Text('Hunted: ', bodyTextStyle()) let gameOverKills = new PIXI.Text('Hunted: ', bodyTextStyle())
let gameOverKiller = new PIXI.Text('Slain By: ', bodyTextStyle()) let gameOverKiller = new PIXI.Text('Slain By: ', bodyTextStyle())
let gameOverDays = new PIXI.Text('You survived', bodyTextStyle()) let gameOverDays = new PIXI.Text('You survived', bodyTextStyle())
let returnToMain = new PIXI.Text('Return home...', buttonBlurStyle()) let returnToMain = new PIXI.Text('Hunt Again', buttonBlurStyle())
returnToMain.interactive = true returnToMain.interactive = true
returnToMain.on('pointerup', () => { returnToMain.on('pointerup', () => {
ctx.pop() ctx.pop()

View File

@ -91,7 +91,7 @@ export function MenuState(ctx: ContextI): StateI {
let menuItems: PIXI.Text[] = [] let menuItems: PIXI.Text[] = []
{ {
let el = new PIXI.Text('Start Game', buttonBlurStyle()) let el = new PIXI.Text('Begin the Hunt', buttonBlurStyle())
el.interactive = true el.interactive = true
el.on('pointerdown', () => { el.on('pointerdown', () => {
ctx.push(GameState(ctx, selectedAnimalName, selectedSegmentName)) ctx.push(GameState(ctx, selectedAnimalName, selectedSegmentName))