about summary refs log tree commit diff stats
path: root/data/maps/the_tower/rooms/First Floor.txtpb
Commit message (Expand)AuthorAgeFilesLines
* Added the_towerStar Rauchenberger2025-08-261-0/+101
c7e7572b'>1d62101 ^
0f32f52 ^







1d62101 ^

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17

                                   

                    


                                                          







                                                                

     
module Pokeviewer
  class Species < ApplicationRecord
    extend Enumerize

    has_many :pokemon, dependent: :restrict_with_exception

    validates :name, presence: true, uniqueness: true

    validates :type_1, presence: true

    enumerize :type_1, in: Move::TYPES
    enumerize :type_2, in: Move::TYPES

    belongs_to :ability_1, class_name: "Ability"
    belongs_to :ability_2, class_name: "Ability", optional: true
  end
end