DragonFireGamesLvl 11
seek modified it
{
name:"Seek",
rarity:"Common",
hp: 200,
def: 600,
image:"https://gamelab.freeflarum.com/assets/files/2024-04-05/1712347646-758899-screenshot-2024-04-05-10241-pm.png",
offx: 1,
offy: 0,
shortDesc: "a creature made of black slime",
desc: "makes its territory in a hotel and gives cahse to its prey",
moves:[{
name:"1000 gazes",
description:"do 30 damage flip a coin if heads your foe is paralyzed for a turn",
cost:1,
cooldown:1,
use:function(){
OppPlayer.hand.pick(function(opp){
opp.hit(30);
if (random() > 0.5) return;
opp.giveEffect("frozen",1,1);
});
}
},
{
name:"Black Coat",
description:"Flip a coin, if heads your opponent is covered in slime and can't move for 3 turns",
cost:2,
cooldown:1,
use:function() {
if (random() > 0.5) return;
OppPlayer.hand.pick(function(opp){
opp.slimed = true;
opp.giveEffect("frozen",0.5,3);
});
}
},{
name:"feed",
description:"If your opponent is covered in slime do 200 ATK and heal 200 HP",
cost:5,
cooldown:2,
use:function(self){
OppPlayer.hand.pick(function(opp){
opp.hit(200);
self.heal(200);
},function(o){
return o.slimed;
});
}
}],
}