Class: Gemwarrior::Cubicat

Inherits:
Monster show all
Defined in:
lib/gemwarrior/entities/monsters/cubicat.rb

Constant Summary

Constants inherited from Monster

Monster::ITEM_POOL

Instance Attribute Summary

Attributes inherited from Monster

#battlecry, #is_boss, #is_dead

Attributes inherited from Creature

#atk_hi, #atk_lo, #defense, #dexterity, #face, #hands, #hp_cur, #hp_max, #inventory, #level, #mood, #rox, #speak, #use, #xp

Attributes inherited from Entity

#consumable, #describe, #describe_detailed, #description, #display_shopping_cart, #equippable, #equipped, #name, #name_display, #number_of_uses, #takeable, #talkable, #useable, #useable_battle, #used, #used_again

Instance Method Summary collapse

Methods inherited from Monster

#describe_detailed

Methods inherited from Creature

#describe, #describe_detailed

Methods inherited from Entity

#puts, #use

Constructor Details

#initializeCubicat

Returns a new instance of Cubicat.



8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
# File 'lib/gemwarrior/entities/monsters/cubicat.rb', line 8

def initialize
  super

  self.name         = 'cubicat'
  self.name_display = 'Cubicat'
  self.description  = 'Perfectly geometrically cubed feline, fresh from its woven enclosure, claws at the ready.'
  self.battlecry    = 'I don\'t really care, as long as you die!'
  self.face         = 'striking'
  self.hands        = 'grippy'
  self.mood         = 'salacious'

  self.level        = rand(6..8)
  self.hp_cur       = rand((level * 2)..(level * 3))
  self.hp_max       = hp_cur
  self.atk_lo       = rand(level..(level * 2).floor)
  self.atk_hi       = rand((level * 2).floor..(level * 3).floor)
  self.defense      = rand(5..7)
  self.dexterity    = rand(8..10)

  self.rox          = rand((level * 2)..(level * 3))
  self.xp           = rand(level..(level * 2))
end