-
Notifications
You must be signed in to change notification settings - Fork 0
/
treasure.rb
46 lines (35 loc) · 849 Bytes
/
treasure.rb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
# encoding: UTF-8
#
# Programación y diseño orientado a objetos
# Grado en Ingeniería Informática
#
# 2013 © Copyleft - All Wrongs Reserved
#
# Ernesto Serrano <erseco@correo.ugr.es>
#
require_relative 'card'
module Napakalaki
class Treasure < Card
#Atributos
attr_reader :name, :gold_coins, :min_bonus, :max_bonus, :type #Esto es como lo implementa ruby nativamente
#Constructor
def initialize(n, g, min, max, t)
@name = n
@gold_coins = g
@min_bonus = min
@max_bonus = max
@type = t
end
#Métodos
def basic_value
return min_bonus
end
def special_value
return max_bonus
end
#Sobrecarga del método to_s (es similar al toString() de java
def to_s
return " Nombre: #{@name} Tipo: #{@type}"
end
end
end