Skip to content

Kekkei Genkai

Combined Releases

All return int0 means not unlocked, 1 means unlocked.

getWoodRelease

int stats.getWoodRelease(player)

getLavaRelease

int stats.getLavaRelease(player)

getScorchRelease

int stats.getScorchRelease(player)

getBoilRelease

int stats.getBoilRelease(player)

getMagnetRelease

int stats.getMagnetRelease(player)

getStormRelease

int stats.getStormRelease(player)

getIceRelease

int stats.getIceRelease(player)

getExplosionRelease

int stats.getExplosionRelease(player)

getSteelRelease

int stats.getSteelRelease(player)

getCrystalRelease

int stats.getCrystalRelease(player)

getDustRelease

int stats.getDustRelease(player)

getShikotsumyaku

int stats.getShikotsumyaku(player)
Bone Release (Kaguya clan).


Dojutsu

getSharinganSize

int stats.getSharinganSize(player)
Value Stage
0 No Sharingan
1 1 Tomoe
2 2 Tomoe
3 3 Tomoe
4 Mangekyou Sharingan
5 Eternal Mangekyou Sharingan
6 Rinnegan

getMangekyouSharingan

String stats.getMangekyouSharingan(player)
The MS pattern name. Empty if the player doesn't have one.


getByakugan

int stats.getByakugan(player)
0 = no Byakugan.


getTenseigan

int stats.getTenseigan(player)
0 = no Tenseigan.


getKetsuryugan

int stats.getKetsuryugan(player)
0 = no Ketsuryugan.


getJougan

int stats.getJougan(player)
0 = no Jougan.


Examples

var sharingan = stats.getSharinganSize(event.player);
if (sharingan > 0) {
    event.player.message("You have the Sharingan!");
}
if (sharingan >= 4) {
    event.player.message("Your Mangekyou has awakened...");
}
if (stats.getWoodRelease(event.player) > 0) {
    event.player.message("You have Wood Release!");
}