This is a normal pokemon code:
Code:
"151": {
"name": "Mew",
"type1": "psychic",
"ability1": "synchronize",
"genderRatio": -1,
"experienceCurve": "mediumSlow",
"catchRate": 45,
"baseExp": 64,
"baseStats": {
"hp": 100,
"atk": 100,
"def": 100,
"spAtk": 100,
"spDef": 100,
"speed": 100
},
"learnset": [
{"level": 1, "move": "pound"},
{"level": 10, "move": "transform"},
{"level": 20, "move": "mega punch"},
{"level": 30, "move": "metronome"},
{"level": 40, "move": "psychic"},
{"level": 50, "move": "ancientpower"}
],
"learnableTM": [
"TM01", "TM02", "TM03", "TM04", "TM05",
"TM06", "TM07", "TM08", "TM09", "TM10",
"TM11", "TM12", "TM13", "TM14", "TM15",
"TM16", "TM17", "TM18", "TM19", "TM20",
"TM21", "TM22", "TM23", "TM24", "TM25",
"TM26", "TM27", "TM28", "TM29", "TM30",
"TM31", "TM32", "TM33", "TM34", "TM35",
"TM36", "TM37", "TM38", "TM39", "TM40",
"TM41", "TM42", "TM43", "TM44", "TM45",
"TM46", "TM47", "TM48", "TM49", "TM50",
"HM01", "HM02", "HM03", "HM04", "HM05",
"HM06", "HM07", "HM08"
],
"evYield": {
"hp": 3
}
},
And this is how the tool is making the code:
Code:
"151": {
"type1": "psychic",
"ability1": "synchronize",
"genderRatio": -1,
"experienceCurve": "mediumSlow",
"catchRate": 45,
"baseExp": 64,
"baseStats": {
"hp": 100,
"atk": 100,
"def": 100,
"spAtk": 100,
"spDef": 100,
"speed": 100
},
"learnset": [
{"level": 1, "move": "pound"},
{"level": 10, "move": "transform"},
{"level": 20, "move": "mega punch"},
{"level": 30, "move": "metronome"},
{"level": 40, "move": "psychic"},
{"level": 50, "move": "ancientpower"}
],
"learnableTM": [
"TM01", "TM02", "TM03", "TM04", "TM05",
"TM06", "TM07", "TM08", "TM09", "TM10",
"TM11", "TM12", "TM13", "TM14", "TM15",
"TM16", "TM17", "TM18", "TM19", "TM20",
"TM21", "TM22", "TM23", "TM24", "TM25",
"TM26", "TM27", "TM28", "TM29", "TM30",
"TM31", "TM32", "TM33", "TM34", "TM35",
"TM36", "TM37", "TM38", "TM39", "TM40",
"TM41", "TM42", "TM43", "TM44", "TM45",
"TM46", "TM47", "TM48", "TM49", "TM50",
"HM01", "HM02", "HM03", "HM04", "HM05",
"HM06", "HM07", "HM08"
],
"evYield": {
"hp": 3
}
},
Don't know if that is important anyways :)