🧙‍♂️How to register Character Sample

Go to the folder backend/contracts/enums/Vocations.ts and add new blocks for each sample you want to release on the site.

export const Vocations = [
  {
    vocation_id: 1,
    name: "Character Sample"
  }
]

Example:

export const Vocations = [
  {
    vocation_id: 1,
    name: "Sorcerer Sample"
  },
  {
    vocation_id: 2,
    name: "Druid Sample"
  },
  {
    vocation_id: 3,
    name: "Paladin Sample"
  },
  {
    vocation_id: 4,
    name: "Knight Sample"
  },
]

Last updated