hensei-api/app/blueprints/api/v1/job_blueprint.rb

25 lines
483 B
Ruby

# frozen_string_literal: true
module Api
module V1
class JobBlueprint < ApiBlueprint
field :name do |job|
{
en: job.name_en,
ja: job.name_jp
}
end
field :proficiency do |job|
[
job.proficiency1,
job.proficiency2
]
end
fields :granblue_id, :row, :order,
:master_level, :ultimate_mastery,
:accessory, :accessory_type, :aux_weapon
end
end
end