1
0
Fork 0
dokkan-data-rails/app/models/card.rb

42 lines
908 B
Ruby
Raw Normal View History

2015-10-06 13:55:12 -04:00
class Card < ActiveRecord::Base
has_paper_trail
2015-10-06 13:55:12 -04:00
belongs_to :character
belongs_to :rarity
belongs_to :type
belongs_to :leader_skill
belongs_to :passive_skill
belongs_to :super_attack
belongs_to :awaken_type
2015-10-08 11:45:05 -04:00
belongs_to :dokkan_card, class_name: 'Card', foreign_key: :dokkan_id
2015-10-06 13:55:12 -04:00
has_and_belongs_to_many :links
2015-10-14 11:24:15 -04:00
has_many :evidences
2015-10-06 13:55:12 -04:00
delegate :name, to: :character, prefix: false
2015-10-08 12:40:31 -04:00
validates :title, presence: true
2015-10-06 13:55:12 -04:00
validates :character, presence: true
validates :gameid, presence: true,
numericality: { only_integer: true },
length: { is: 7 }
validates :rarity, presence: true
validates :type, presence: true
validates :awaken_type, presence: true
2015-10-08 13:08:45 -04:00
default_scope { order(:gameid) }
2015-10-06 13:55:12 -04:00
def dokkan?
2015-10-08 11:45:05 -04:00
dokkan_id != nil
end
def full_name
2015-10-08 12:40:31 -04:00
"#{title} #{character.name}"
2015-10-08 11:45:05 -04:00
end
def icon
"card_#{gameid}_thumb.png"
2015-10-06 13:55:12 -04:00
end
end