diff options
Diffstat (limited to 'src/scalevalapokalypsi/Model/Adventure.scala')
-rw-r--r-- | src/scalevalapokalypsi/Model/Adventure.scala | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/scalevalapokalypsi/Model/Adventure.scala b/src/scalevalapokalypsi/Model/Adventure.scala index 9347bfa..57f0dfd 100644 --- a/src/scalevalapokalypsi/Model/Adventure.scala +++ b/src/scalevalapokalypsi/Model/Adventure.scala @@ -14,8 +14,8 @@ import scalevalapokalypsi.Model.Entities.* */ class Adventure(val playerNames: Vector[String]): - private val middle = Area("Forest", "You are somewhere in the forest. There are a lot of trees here.\nBirds are singing.") - private val northForest = Area("Forest", "You are somewhere in the forest. A tangle of bushes blocks further passage north.\nBirds are singing.") + private val middle = Area("Forest", "Olet keskellä metsää. Metsä on täynnä puita.\nLintua laulaa.") + private val northForest = Area("Forest", "Olet keskellä metsää. Tiheä pensaikko estää sinua kulkemasta pohjoiseen. \nLintua laulaa.") private val southForest = Area("Forest", "The forest just goes on and on.") private val clearing = Area("Forest Clearing", "You are at a small clearing in the middle of forest.\nNearly invisible, twisted paths lead in many directions.") private val tangle = Area("Tangle of Bushes", "You are in a dense tangle of bushes. It's hard to see exactly where you're going.") @@ -29,11 +29,11 @@ class Adventure(val playerNames: Vector[String]): tangle.setNeighbors(Vector("north" -> northForest, "east" -> home, "south" -> southForest, "west" -> northForest)) home.setNeighbors(Vector("west" -> tangle)) - clearing.addItem(Item("battery", "It's a small battery cell. Looks new.")) + clearing.addItem(Item("battery", "It's a small battery cell. Looks new.", 1)) southForest.addItem(Item( "laulukäärö", "Jukranpujut, löysit laulukäärön!\n" + - "Et vielä voi tehdä sillä mitään, koska et edes osaa laula." + "Et vielä voi tehdä sillä mitään, koska et edes osaa laula.", 1 )) val entities: Map[String, Entity] = Map() |