1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-23 19:32:11 +00:00

68 lines
878 B
TypeScript
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import { Card } from '../../../interfaces'
import Set from '../Base Set 2'
const card: Card = {
name: {
en: "Kakuna",
},
illustrator: "Keiji Kinebuchi",
rarity: "Uncommon",
category: "Pokemon",
set: Set,
dexId: [
14,
],
hp: 80,
types: [
"Grass",
],
evolveFrom: {
en: "Weedle",
},
stage: "Stage1",
attacks: [
{
cost: [
"Colorless",
"Colorless",
],
name: {
en: "Stiffen",
},
effect: {
en: "Flip a coin. If heads, prevent all damage done to Kakuna during your opponent's next turn. (Any other effects of attacks still happen.)",
},
},
{
cost: [
"Grass",
"Grass",
],
name: {
en: "Poisonpowder",
},
effect: {
en: "Flip a coin. If heads, the Defending Pokémon is now Poisoned.",
},
},
],
weaknesses: [
{
type: "Fire",
value: "×2"
},
],
}
export default card