- Edited
createCard({
name:"TNitro",
rarity:"Uncommon",
health:1800,
image:"https://i.ibb.co/wgZLtyr/image.png",
offx: 0,
offy: -0.4,
description: "An unworthy opponent. A totally real potato, he is known for making Tatertale, but that's pretty much it.",
moves:[{
title:"Ragequit",
description:"Create some impossible game that the opponent will ragequit, placing that card at the bottom of the opponent's deck and dealing 80 ATK.",
cost:2,
cooldown:1,
use:function(opp) {
opp.status.push("Poisioned");
//idk what else to add here
}
},{
title:"The Sans",
description:"Do nothing and dodge the next attack, unless the next attack is a special.",
cost:2,
cooldown:2,
use:function(opp) {
}
},{
title:"Special- Reverse Psychology",
description:"The potato takes a bite out of the opponent, dealing 300 ATK and making them confused since the food eats them.",
cost:7,
cooldown:1,
use:function(opp,self) {
opp.health -= 300;
self.health += 300;
opponent.status.push("Laggy");
}
}],
});