Skip to content

Commit

Permalink
feat: better dogman gfx
Browse files Browse the repository at this point in the history
  • Loading branch information
goblinhack committed Nov 18, 2023
1 parent 26b0b90 commit a955be4
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 10 deletions.
Binary file modified data/gfx.tgz
Binary file not shown.
8 changes: 4 additions & 4 deletions python/gfx.py
Original file line number Diff line number Diff line change
Expand Up @@ -3142,10 +3142,10 @@ def init_tiles_16x16_main():
"dogman.sleeping.1",
"dogman.sleeping.2",
"dogman.dead.1",
"dogman.dead.2",
"dogman.dead.3",
"dogman.dead.4",
"dogman.dead.5",
"",
"",
"",
"",
"",
"",
"",
Expand Down
6 changes: 0 additions & 6 deletions python/things/monsters/dogman.py
Original file line number Diff line number Diff line change
Expand Up @@ -203,12 +203,6 @@ def tp_init(name, text_long_name):
my.tile(self,
ascii_fg_char="d", ascii_bg_col_name="", ascii_fg_col_name="gray30",
tile="dogman.dead.1", is_dead=True, delay_ms=delay)
my.tile(self,
ascii_fg_char="d", ascii_bg_col_name="", ascii_fg_col_name="gray30",
tile="dogman.dead.2", is_dead=True, delay_ms=delay)
my.tile(self,
ascii_fg_char="d", ascii_bg_col_name="", ascii_fg_col_name="gray30",
tile="dogman.dead.3", is_dead=True, delay_ms=delay, is_end_of_anim=True)

my.tp_update(self)

Expand Down
1 change: 1 addition & 0 deletions python/things/monsters/gnoll.py
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,7 @@ def tp_init(name, text_long_name):
my.distance_throw(self, 10)
my.distance_vision(self, 10)
my.dmg_chance_d1000_nat_att(self, 0, 100)
my.is_able_to_learn_skills(self, True)
my.dmg_limited_per_tick(self, True)
my.dmg_nat_att_dice(self, "1d4+1")
my.dmg_nat_att_type(self, "bite")
Expand Down

0 comments on commit a955be4

Please sign in to comment.