# Duane's Dungeon - a rogue-like game # Copyright (C) 2022 Duane Robertson # titan.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 . extends Creature func set_species_attributes(): species = 'titan' defense = { lightning = 0, magic = 0.8, tornado = 0.5, weapon = 0.8, } description = 'The titans rebelled against the gods and were terribly cursed. Most of them are still bound under the earth, but a few deranged individuals have escaped.' energy_max = 20 icon_name = 'giant' icon_fg = 'a395a3' regen_e = 2 strength_max = 33 # 29-33 originally size = 5 spell_chance = { curse = 8, flash = 8, lightning = 6, sleep = 8, } super()