esse e o arquivo da lib
-- Essa tabela e para a criacao de pokes para o uso de math random
NATURE_TABLE_NEWPOKE = {
[1] = {nature = "Adamant"},
[2] = {nature = "Bashful"},
[3] = {nature = "Bold"},
[4] = {nature = "Brave"},
[5] = {nature = "Calm"},
[6] = {nature = "Careful"},
[7] = {nature = "Docile"},
[8] = {nature = "Gentle"},
[9] = {nature = "Hardy"},
[10] = {nature = "Hasty"},
[11] = {nature = "Impish"},
[12] = {nature = "Jolly"},
[13] = {nature = "Lax"},
[14] = {nature = "Lonely"},
[15] = {nature = "Mild"},
[16] = {nature = "Modest"},
[17] = {nature = "Naive"},
[18] = {nature = "Naughty"},
[19] = {nature = "Quiet"},
[20] = {nature = "Quirky"},
[21] = {nature = "Rash"},
[22] = {nature = "Relaxed"},
[23] = {nature = "Sassy"},
[24] = {nature = "Serious"},
[25] = {nature = "Timid"},
}
-- attack defense agility vitality specialattack
-- Essa tabela e para dar buff la no level system-- Ordem da list:
-- attack
-- defense
-- agility
-- vitality
-- specialattack
-- list_operator: Aceita: "+", "-" e "*"
-- Explicacao de Operadores: + (SOMA) / - (SUBTRAÇÃO) / * (MULTIPLICAÇÃO)
NATURE_TABLE_SYSTEM = {
["Adamant"] = {list = {1.0, 0, 0, 0, 1.0}, list_operator = {"-", "+", "+", "+", "-"}},
["Bashful"] = {list = {0, 0, 0, 0, 0}, list_operator = {"+", "+", "-", "+", "+"}},
["Bold"] = {list = {1.0, 90.3, 0, 0, 0}, list_operator = {"-", "+", "+", "+", "+"}},
["Brave"] = {list = {1.0, 0, 0, 0, 1.0}, list_operator = {"+", "+", "-", "+", "-"}},
["Calm"] = {list = {1.0, 1.0, 0, 0, 0}, list_operator = {"-", "+", "+", "+", "-"}},
["Careful"] = {list = {0, 1.0, 0, 0, 1.0}, list_operator = {"+", "+", "+", "+", "-"}},
["Docile"] = {list = {0, 0, 0, 0, 0}, list_operator = {"+", "+", "+", "-", "+"}},
["Gentle"] = {list = {0, 1.0, 0, 1.5, 0}, list_operator = {"+", "+", "+", "+", "+"}},
["Hardy"] = {list = {1.4, 0, 0, 0, 0}, list_operator = {"+", "+", "+", "+", "+"}},
["Hasty"] = {list = {0, 2.0, 20.0, 0, 0}, list_operator = {"+", "-", "+", "+", "+"}},
["Impish"] = {list = {0, 1.0, 0, 0, 1.0}, list_operator = {"+", "-", "+", "+", "+"}},
["Jolly"] = {list = {0, 0, 2.0, 0, 1.0}, list_operator = {"+", "+", "+", "+", "-"}},
["Lax"] = {list = {0, 1.0, 0, 0.0, 0}, list_operator = {"+", "+", "+", "-", "+"}},
["Lonely"] = {list = {1.0, 1.0, 0, 0, 0}, list_operator = {"+", "-", "+", "+", "+"}},
["Mild"] = {list = {0, 1.0, 0, 0, 1.5}, list_operator = {"+", "-", "+", "+", "+"}},
["Modest"] = {list = {1.0, 0, 0, 0, 1.0}, list_operator = {"-", "+", "+", "+", "+"}},
["Naive"] = {list = {0, 1.0, 1.0, 0, 0}, list_operator = {"+", "-", "+", "-", "+"}},
["Naughty"] = {list = {1.0, 1.0, 0, 0, 0}, list_operator = {"+", "-", "+", "-", "+"}},
["Quiet"] = {list = {0, 0, 1.0, 0, 1.0}, list_operator = {"+", "+", "-", "+", "+"}},
["Quirky"] = {list = {0, 0, 0, 0, 0}, list_operator = {"+", "-", "+", "+", "+"}},
["Rash"] = {list = {0, 1.0, 0, 0, 1.0}, list_operator = {"+", "-", "+", "-", "+"}},
["Relaxed"] = {list = {0, 1.0, 1.0, 0, 0}, list_operator = {"+", "+", "-", "+", "+"}},
["Sassy"] = {list = {0, 1.0, 1.0, 0, 0}, list_operator = {"+", "+", "-", "+", "+"}},
["Serious"] = {list = {0, 0, 0, 0, 0}, list_operator = {"-", "+", "+", "+", "+"}},
["Timid"] = {list = {1.0, 0, 1.0, 0, 0}, list_operator = {"-", "+", "+", "+", "+"}},
}