CobblemonTrainers 트레이너 파일 구성하는 방법

게임하세요. 두 번 하세요.


답글 쓰기
사용자 아바타
fractalbarista
Site Admin
게시물: 168
가입일: 2023-03-08 수요일 10:38

CobblemonTrainers 트레이너 파일 구성하는 방법

올림 by fractalbarista »

예시

코드: 모두 선택

{
  "team": [
    {
      "species": "cobblemon:butterfree",
      "gender": "MALE",
      "level": 20,
      "nature": "cobblemon:bashful",
      "ability": "compoundeyes",
      "moveset": [
        "tackle",
        "stringshot",
        "harden",
        "gust"
      ],
      "ivs": {
        "hp": 20,
        "attack": 21,
        "defence": 20,
        "special_attack": 18,
        "special_defence": 1,
        "speed": 28
      },
      "evs": {},
      "shiny": false,
      "heldItem": "minecraft:air"
    },
    {
      "species": "cobblemon:vivillon",
      ...
    },
    {
      "species": "cobblemon:heracross",
      ...
    }
  ],
  "winCommand": "",
  "lossCommand": "",
  "canOnlyBeatOnce": false,
  "cooldownSeconds": 0,
  "partyMaximumLevel": 20,
  "defeatRequiredTrainers": []
}

설명

포켓몬 기술 설정

코드: 모두 선택

"moveset": [
  "tackle",
  "stringshot",
  "harden",
  "gust"
]

영문 기술명을 사용해야 합니다. 위 예시의 경우 Butterfree(버터플)이 배우는 기술만 설정할 수 있는 것은 아니지만, 되도록이면 버터플이 배우는 기술들로 구성하는 것이 좋을 것 같습니다.

IVs

코드: 모두 선택

"ivs": {
  "hp": 20,
  "attack": 21,
  "defence": 20,
  "special_attack": 18,
  "special_defence": 1,
  "speed": 28
},

0 에서 31 사이의 값으로만 설정할 수 있습니다.

partyMaximumLevel

코드: 모두 선택

"partyMaximumLevel": 20

트레이너와 배틀을 시작하기 위해서는 플레이어의 포켓몬 모두 레벨 20을 넘어서는 안됩니다.

답글 쓰기