class Core::Game::Combat::Weapon
Attributes
effects[R]
icon[R]
name[R]
type[R]
Public Class Methods
new(name, type, effects, icon)
click to toggle source
# File lib/game/combat/battle.rb, line 100 def initialize(name, type, effects, icon) @name, @type, @effects, @icon = name, type, effects, Core.sprite("icons/#{icon}") end