# Duane's Dungeon - a rogue-like game
# Copyright (C) 2023 Duane Robertson

# ghoul.gd - a monster

# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.

# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU General Public License for more details.

# You should have received a copy of the GNU General Public License
# along with this program.  If not, see <https://www.gnu.org/licenses/>.


extends Creature


func set_species_attributes():
	species = 'ghoul'
	defense = { weapon = 0.8 }
	description = 'Ghouls are debased humanoids that feed on corpses. Since they generally can\'t find enough, they will happily kill you to provide more. The stench of a ghoul sicken at close range.'
	energy_max = 12
	icon_name = 'ghoul'
	icon_fg = 'bf9e87'
	spell_chance = { stun = 4, }
	strength_max = 10
	unliving = true

	super()
