Module: Card::Set::All::Type

Extended by:
Card::Set
Defined in:
tmpsets/set/mod003-core/all/type.rb

Overview

Set: All cards (Type)

Defined Under Namespace

Modules: ClassMethods

Class Method Summary collapse

Instance Method Summary collapse

Methods included from I18nScope

#mod_name, #scope

Methods included from Loader

#clean_empty_module_from_hash, #clean_empty_modules, #extended, #process_base_modules, #register_set

Methods included from Helpers

#abstract_set?, #all_set?, #num_set_parts, #shortname, #underscore

Methods included from Card::Set::AdvancedApi

#attachment, #ensure_set, #stage_method

Methods included from Format

#before, #format, layout_method_name, #view, view_method_name, view_setting_method_name, wrapper_method_name

Methods included from Inheritance

#include_set, #include_set_formats

Methods included from Basket

#abstract_basket, #add_to_basket, #basket, #unshift_basket

Methods included from Trait

#card_accessor, #card_reader, #card_writer, #require_field

Methods included from Event::Api

#event

Class Method Details

.source_locationObject



7
# File 'tmpsets/set/mod003-core/all/type.rb', line 7

def self.source_location; "/Users/ethan/dev/decko/gem/card/mod/core/set/all/type.rb"; end

Instance Method Details

#get_type_id_from_structureObject



46
47
48
49
50
# File 'tmpsets/set/mod003-core/all/type.rb', line 46

def get_type_id_from_structure
  return unless name && (t = template)
  reset_patterns # still necessary even with new template handling?
  t.type_id
end

#type=(type_name) ⇒ Object



38
39
40
# File 'tmpsets/set/mod003-core/all/type.rb', line 38

def type= type_name
  self.type_id = Card.fetch_id type_name
end

#type_cardObject



15
16
17
18
# File 'tmpsets/set/mod003-core/all/type.rb', line 15

def type_card
  return if type_id.nil?
  Card.quick_fetch type_id.to_i
end

#type_cardnameObject



34
35
36
# File 'tmpsets/set/mod003-core/all/type.rb', line 34

def type_cardname
  type_card.try :name
end

#type_codeObject



20
21
22
# File 'tmpsets/set/mod003-core/all/type.rb', line 20

def type_code
  Card::Codename[type_id.to_i]
end

#type_known?Boolean

Returns:

  • (Boolean)


42
43
44
# File 'tmpsets/set/mod003-core/all/type.rb', line 42

def type_known?
  type_id.present?
end

#type_nameObject Also known as: type



24
25
26
# File 'tmpsets/set/mod003-core/all/type.rb', line 24

def type_name
  type_card.try :name
end

#type_name_or_defaultObject



30
31
32
# File 'tmpsets/set/mod003-core/all/type.rb', line 30

def type_name_or_default
  type_card.try(:name) || Card.quick_fetch(Card.default_type_id).name
end