Paras mudar a chances dos Shinys nascerem, Vai em data/creaturescript/spawn.lua e procura por :
if isInArray(shinys, getCreatureName(cid)) then
transform = math.random(1, 1000) --70.8% chance
elseif isInArray(raros, getCreatureName(cid)) then
transform = math.random(1, 1000) --9.1% chance
essa linha são os shinys comuns :
if isInArray(shinys, getCreatureName(cid)) then
transform = math.random(1, 1000) --70.8% chance
e essa os raros:
elseif isInArray(raros, getCreatureName(cid)) then
transform = math.random(1, 1000) --9.1% chance
Ae vc muda como desejar.