mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-05-27 18:39:54 +00:00
47 lines
596 B
TypeScript
47 lines
596 B
TypeScript
import { Card } from '../../../interfaces'
|
||
import Set from '../EX trainer Kit (Latios)'
|
||
|
||
const card: Card = {
|
||
dexId: [263],
|
||
set: Set,
|
||
|
||
name: {
|
||
en: "Zigzagoon"
|
||
},
|
||
|
||
illustrator: "Atsuko Nishida",
|
||
rarity: "None",
|
||
category: "Pokemon",
|
||
stage: "Basic",
|
||
|
||
hp: 40,
|
||
|
||
types: [
|
||
"Colorless",
|
||
],
|
||
|
||
attacks: [{
|
||
cost: [
|
||
"Colorless",
|
||
],
|
||
name: {
|
||
en: "Fury Swipes"
|
||
},
|
||
effect: {
|
||
en: "Flip 3 coins. This attack does 10 damage times the number of heads."
|
||
},
|
||
damage: "10×"
|
||
}],
|
||
|
||
weaknesses: [
|
||
{
|
||
type: "Fighting",
|
||
value: "2x"
|
||
},
|
||
],
|
||
|
||
retreat: 1,
|
||
}
|
||
|
||
export default card
|