Fix hair, dick around with new game screen.
[18plus-7leafadventure.git] / src / org / sevenchan / dongs / towns / Biome.as
blob9ed316c71a8f10e115c294aebd6900d841063b2a
1 package org.sevenchan.dongs.towns
4 /**
5 * Used for masturbation scene selection, and other biome-specific text
6 * @author Harbinger
7 */
8 public class Biome
10 public static const WOODS:Biome = new Biome("woods");
11 public static const PLAINS:Biome = new Biome("plains");
12 public static const BEACH:Biome = new Biome("beach");
13 public static const JUNGLE:Biome = new Biome("jungle");
14 public static const MOUNTAINS:Biome = new Biome("mountains");
15 public static const CAVE:Biome = new Biome("cave");
17 public var name:String = "";
19 public function Biome(name:String)
21 this.name = name;