10 lines
228 B
Ruby
10 lines
228 B
Ruby
# frozen_string_literal: true
|
|
|
|
module Api
|
|
module V1
|
|
class WeaponStatModifierBlueprint < Blueprinter::Base
|
|
identifier :id
|
|
fields :slug, :name_en, :name_jp, :category, :stat, :polarity, :suffix
|
|
end
|
|
end
|
|
end
|