dev menu, buffs

This commit is contained in:
anton.gurov
2019-11-12 15:57:20 +03:00
parent 7837051e80
commit 6197e3be8e
9 changed files with 94 additions and 76 deletions

View File

@ -39,7 +39,7 @@ func NewWall() *Tile {
return &Tile{
Name: "Wall",
Description: "A dull rock wall",
BlocksPass: false,
BlocksPass: true,
BlocksSight: true,
Explored: false,
MustDraw: false,
@ -57,8 +57,8 @@ func NewWall() *Tile {
func NewDecoratedWall() *Tile {
return &Tile{
Name: "Wall",
Description: "A dull rock wall",
Name: "Decorated Wall",
Description: "A rock wall covered with paintings",
BlocksPass: true,
BlocksSight: true,
Explored: false,