From f0a2f559dc51bb6ab86d93f1c6d22cd6a4935b4f Mon Sep 17 00:00:00 2001 From: Fen Dweller Date: Sat, 8 Aug 2020 18:26:22 -0400 Subject: [PATCH] Move Geta to the center square --- src/game/maps/town.ts | 36 ++++++++++++++++++------------------ 1 file changed, 18 insertions(+), 18 deletions(-) diff --git a/src/game/maps/town.ts b/src/game/maps/town.ts index 20d66b0..6c58ff7 100644 --- a/src/game/maps/town.ts +++ b/src/game/maps/town.ts @@ -133,24 +133,6 @@ export const Town = (): Place => { ) ) - woods.choices.push( - new Choice( - "Fight Geta", - "yolo", - (world, executor) => { - world.encounter = new Encounter( - { - name: "You punched Geta", - intro: (world: World) => new LogLine(`You punched Geta. Geta is angry.`) - }, - [executor, new Creatures.Geta()] - ) - - return new LogLine(`FIGHT TIME`) - } - ) - ) - woods.choices.push( new Choice( "Fight a dragon", @@ -248,6 +230,24 @@ export const Town = (): Place => { ) ) + square.choices.push( + new Choice( + "Fight Geta", + "yolo", + (world, executor) => { + world.encounter = new Encounter( + { + name: "You punched Geta", + intro: (world: World) => new LogLine(`You punched Geta. Geta is angry.`) + }, + [executor, new Creatures.Geta()] + ) + + return new LogLine(`FIGHT TIME`) + } + ) + ) + alley.choices.push( new Choice( "Kuro",