You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
class Combat < ApplicationRecord
|
|
enum :result, [:draw, :domination]
|
|
|
|
belongs_to :left_fighter, class_name: 'Creature'
|
|
belongs_to :right_fighter, class_name: 'Creature'
|
|
belongs_to :winner, class_name: 'Creature'
|
|
end
|