gZanyLvl 2
- Windows
createCard({
name:"Gabriel",
rarity:"God",
health:6000,
image:"https://gamelab.freeflarum.com/assets/files/2024-01-15/1705280431-816010-card-game-image.png",
offx: 1,
offy: 0,
description: "The og creator of the card game. Has no actual talent except thinking up game ideas.",
hpcol: 255,
moves:[{
title:"Braincell swarm",
description:"Use brain cells to overload your opponent with knowledge while dealing 500 ATK",
cost:2,
cooldown:1,
use:function(opp) {
Opp.health -= 500;
Var dice = randomNumber(1, 3);
If (dice == 1 || 3){
opp.status.push(“Dumb”);
}
}
},{
title:"Suit and Tie",
description:"Automatically remove any status’ that is/are on this card and kill your opponent’s active card. Has a chance of killing yourself",
Cost: 7,
Cooldown: 1,
use:function(opp) {
Opp.health -= 9999;
Var dice = randomNumber(1, 5);
If (dice == 1) {
Self.health = 0;
}
}
},{
title:"Hi-typing",
description:"Type at 1000 wpm bypassing your opponents comprehension while dealing 200 ATK",
cost:2,
cooldown:1,
use:function(opp) {
Opp.health -= 200;
}
}],
});
Tell me if I need to change anything