diff options
Diffstat (limited to 'Bitspace/Bitspace/Biome.cs')
| -rw-r--r-- | Bitspace/Bitspace/Biome.cs | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/Bitspace/Bitspace/Biome.cs b/Bitspace/Bitspace/Biome.cs index 396e37e..2713f80 100644 --- a/Bitspace/Bitspace/Biome.cs +++ b/Bitspace/Bitspace/Biome.cs @@ -11,12 +11,15 @@ namespace Game private string name; private char floor; //floor literally what the mobs "step on" private ConsoleColor color; + private ushort damage; + private bool suffocate; public string Name { set { name = value; } get { return name; } } + public char Floor { set { floor = value; } @@ -28,5 +31,17 @@ namespace Game set { color = value; } get { return color; } } + + public ushort Damage + { + set { damage = value; } + get { return damage; } + } + + public bool Suffocate + { + set { suffocate = value; } + get { return suffocate; } + } } } |
