mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-25 12:22:14 +00:00
29 lines
431 B
TypeScript
29 lines
431 B
TypeScript
import { Card } from '../../../interfaces'
|
||
import Set from '../EX trainer Kit (Latios)'
|
||
|
||
const card: Card = {
|
||
set: Set,
|
||
|
||
name: {
|
||
en: "Zigzagoon"
|
||
},
|
||
|
||
illustrator: "Atsuko Nishida",
|
||
rarity: "None",
|
||
category: "Pokemon",
|
||
stage: "Basic",
|
||
|
||
attacks: [{
|
||
name: {
|
||
en: "Fury Swipes"
|
||
},
|
||
|
||
damage: "10×",
|
||
|
||
effect: {
|
||
en: "Flip 3 coins. This attack does 10 damage times the number of heads."
|
||
}
|
||
}]
|
||
}
|
||
|
||
export default card |