All Zulite material goes here. Obviously.
Briefing:
Zulites have no legs, just arms, they're like Bomys sorta, same Skins system, they hop around on one hand when pulling, pushing, carrying, etc. Can't swim, they just walk along the bottom of the ocean, little bubbles come up instead. Some guys were working on graphics and sounds, I made the stomp attack, still need someone with access to the Bomy code to integrate it...
NPC Code:
if(playerenters&&iszulite){
toweapons Stomp;
}
if(weaponfired){
freezeplayer 2;
setani stomp,#s(ZuliteSkin);//Won't work until you have the gani and the skin
sleep 1.5;
for(this.i=0;this.i<objectscount;this.i++){ //I think we have objectscount now...
if(abs(playerx-objects[this.i].x)^2+abs(playery-objects[this.i].y)^2<100){ //Pythagorean theorem, radius=10
hitobject this.i,playerswordpower;
}
}
}
Igneous Zulites live in Volcanos.
Meton Zulites live in the arctic.
Sedimentary Zulites live on islands.
Igneous Zulites can eat rocks to spit fire.
Meton Zulites can stomp.
Sedimentary Zulites actually float.