From 768fb665e383b19a582b2be339acc8848242e547 Mon Sep 17 00:00:00 2001 From: William Barbosa Date: Mon, 2 Oct 2023 22:23:32 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=8F=8E=EF=B8=8F=20Streamline=20Items?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- scenes/room/Dungeon.cs | 33 +++++++++++++++++---------------- 1 file changed, 17 insertions(+), 16 deletions(-) diff --git a/scenes/room/Dungeon.cs b/scenes/room/Dungeon.cs index 45155db..b672b3a 100644 --- a/scenes/room/Dungeon.cs +++ b/scenes/room/Dungeon.cs @@ -1,6 +1,5 @@ using System; using System.Collections.Generic; -using System.Diagnostics; using System.IO; using System.Linq; using static HazardLibrary.HazardType; @@ -57,7 +56,7 @@ public static IReadOnlyDictionary Linear(out Coord entrance ), Dialogue( Portrait.Player, - "Right? I'm sure they are reading that they should click on the items they wants me to use.", + "Right? I'm sure they are reading that they should click on the items they want me to use.", "Whatever the word 'click' means in this context." ), Dialogue( @@ -129,27 +128,29 @@ public static IReadOnlyDictionary Linear(out Coord entrance ), Item(Excalibur) ), - Room(Item(Potion)), - Room(Item(Potion)), - Room(Item(Potion)), - Room(Item(Sword)), - Room(Item(Sword)), + Room( + Item(Potion), + Item(Potion), + Item(Potion), + Item(Sword), + Item(Sword) + ), Room( Hazard(Beholder), - Item(Crown) + Item(Crown), + Item(Potion), + Item(Potion) ), - Room(Item(Potion)), - Room(Item(Potion)), Room( Hazard(Slime), Item(Potion) ), Room( Hazard(Beholder), - Item(Sword) + Item(Sword), + Item(Potion), + Item(Potion) ), - PotionRoom(), - PotionRoom(), Room( Hazard(Slime) ), @@ -157,10 +158,10 @@ public static IReadOnlyDictionary Linear(out Coord entrance Hazard(Slime) ), Room( - Hazard(Slime) + Hazard(Slime), + Item(Sword), + Item(Sword) ), - SwordRoom(), - SwordRoom(), Room( Dialogue( Portrait.Beholder,