1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-11 15:45:14 +00:00
Files
cards-database/data/Trainer kits/EX trainer Kit (Latios)/7.ts
2021-10-18 11:53:03 +02:00

29 lines
431 B
TypeScript
Raw 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 '../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