1. Bio Cannibalize
You can change monsters id at: src/skill.cpp
int skill_castend_pos2
...
case AM_CANNIBALIZE:
{
int summons[5] = { MOBID_G_MANDRAGORA, MOBID_G_HYDRA, MOBID_G_FLORA, MOBID_G_PARASITE, MOBID_G_GEOGRAPHER };
and at
bool skill_check_condition_castend
...
case AM_CANNIBALIZE:
case AM_SPHEREMINE: {
int c=0;
int summons[5] = { MOBID_G_MANDRAGORA, MOBID_G_HYDRA, MOBID_G_FLORA, MOBID_G_PARASITE, MOBID_G_GEOGRAPHER };
int maxcount = (skill_id==AM_CANNIBALIZE)? 6-skill_lv : skill_get_maxcount(skill_id,skill_lv);
maxcount is a variable for number of mobs
2. Acid Demonstration
You can change element of this skill and number of hits at db/re(pre-re)/skill_db.txt
// 05 element (0 - neutral, 1 - water, 2 - earth, 3 - fire, 4 - wind, 5 - poison,
// 6 - holy, 7 - dark, 8 - ghost, 9 - undead, -1 - use weapon element
// -2 - use endowed element, -3 - use random element.)
// 09 Number of hits (when positive, damage is increased by hits,
// negative values just show number of hits without increasing total damage)
4. https://github.com/rathena/rathena/wiki/Adding-New-Bonuses