couple more tile chars

This commit is contained in:
2016-03-10 13:11:32 -08:00
parent 120ee6741b
commit c8f4be119b

View File

@@ -53,6 +53,8 @@ impl Tile {
73 => '▒', // hidden passage
75 => '🍖', // spit (rotisserie) '🍳'
76 => '⌘', // lava
// 79 => '💥', // attack flash
// 88 | 89 => 'ጿ', // beggar
96...121 => ::std::char::from_u32((self.val - 31) as u32).unwrap(),
122 => '=', // space
123 => '⊐', // right ''
@@ -60,6 +62,7 @@ impl Tile {
125 => '▢', // window
126 => '✨', // space
127 => '▓', // brick wall
// 140 | 141 => '🌀', // whirlpool
189 => '⚔', // phantom 2
_ => panic!("{0}", self.val)
}