by fractalbarista » 2024-01-10 수요일 22:38
코블몬 트레이너 배틀을 만들 수 있게 만들어주는 모드입니다.
예시 파일 Green.json
코드: 모두 선택
{
"team": [
{
"species": "cobblemon:heracross",
"gender": "MALE",
"level": 72,
"nature": "cobblemon:serious",
"ability": "guts",
"moveset": [
"megahorn",
"counter",
"rocktomb",
"earthquake"
],
"ivs": {
"hp": 5,
"attack": 2,
"defence": 26,
"special_attack": 30,
"special_defence": 12,
"speed": 19
},
"evs": {},
"shiny": false
},
{
"species": "cobblemon:alakazam",
"gender": "MALE",
"level": 73,
"nature": "cobblemon:modest",
"ability": "magicguard",
"moveset": [
"psychic",
"reflect",
"calmmind",
"shadowball"
],
"ivs": {
"hp": 3,
"attack": 3,
"defence": 14,
"special_attack": 5,
"special_defence": 0,
"speed": 2
},
"evs": {},
"shiny": false
}
],
"winCommand": "",
"lossCommand": "",
"canOnlyBeatOnce": false
}
코블몬 트레이너 배틀을 만들 수 있게 만들어주는 모드입니다.
- [CobblemonTrainers - Github](https://github.com/davo899/CobblemonTrainers)
- [FireRed and LeafGreen walkthrough - Bulbapedia](https://bulbapedia.bulbagarden.net/wiki/Appendix:FireRed_and_LeafGreen_walkthrough/Section_18#Rival)
예시 파일 `Green.json`
``` json
{
"team": [
{
"species": "cobblemon:heracross",
"gender": "MALE",
"level": 72,
"nature": "cobblemon:serious",
"ability": "guts",
"moveset": [
"megahorn",
"counter",
"rocktomb",
"earthquake"
],
"ivs": {
"hp": 5,
"attack": 2,
"defence": 26,
"special_attack": 30,
"special_defence": 12,
"speed": 19
},
"evs": {},
"shiny": false
},
{
"species": "cobblemon:alakazam",
"gender": "MALE",
"level": 73,
"nature": "cobblemon:modest",
"ability": "magicguard",
"moveset": [
"psychic",
"reflect",
"calmmind",
"shadowball"
],
"ivs": {
"hp": 3,
"attack": 3,
"defence": 14,
"special_attack": 5,
"special_defence": 0,
"speed": 2
},
"evs": {},
"shiny": false
}
],
"winCommand": "",
"lossCommand": "",
"canOnlyBeatOnce": false
}
```