Module: Card::Set::All::Type
- Extended by:
- Card::Set
- Defined in:
- tmpsets/set/mod001-01_core/all/type.rb
Defined Under Namespace
Modules: ClassMethods
Instance Method Summary
collapse
Methods included from Card::Set
abstract_set?, all_set?, clean_empty_module_from_hash, clean_empty_modules, define_on_format, each_format, ensure_set, extended, format, include_set, include_set_formats, process_base_module_list, process_base_modules, register_set, register_set_format, shortname, stage_method, view, write_tmp_file
Methods included from Trait
#card_accessor, #card_reader, #card_writer
Methods included from Event
#define_event, #event
Instance Method Details
#get_type_id_from_structure ⇒ Object
36
37
38
39
40
|
# File 'tmpsets/set/mod001-01_core/all/type.rb', line 36
def get_type_id_from_structure
return unless name && (t = template)
reset_patterns t.type_id
end
|
#type=(type_name) ⇒ Object
32
33
34
|
# File 'tmpsets/set/mod001-01_core/all/type.rb', line 32
def type= type_name
self.type_id = Card.fetch_id type_name
end
|
#type_card ⇒ Object
11
12
13
14
|
# File 'tmpsets/set/mod001-01_core/all/type.rb', line 11
def type_card
return if type_id.nil?
Card.quick_fetch type_id.to_i
end
|
#type_cardname ⇒ Object
28
29
30
|
# File 'tmpsets/set/mod001-01_core/all/type.rb', line 28
def type_cardname
type_card.try :cardname
end
|
#type_code ⇒ Object
16
17
18
|
# File 'tmpsets/set/mod001-01_core/all/type.rb', line 16
def type_code
Card::Codename[type_id.to_i]
end
|
#type_name ⇒ Object
20
21
22
|
# File 'tmpsets/set/mod001-01_core/all/type.rb', line 20
def type_name
type_card.try :name
end
|
#type_name_or_default ⇒ Object
24
25
26
|
# File 'tmpsets/set/mod001-01_core/all/type.rb', line 24
def type_name_or_default
type_card.try(:name) || Card.quick_fetch(Card.default_type_id).name
end
|