1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-25 12:22:14 +00:00
Florian Bouillon ef2d099e6e
Fixed ! (#22)
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2021-05-26 14:51:02 +02:00

47 lines
576 B
TypeScript

import { Card } from '../../../interfaces'
import Set from '../Aquapolis'
const card: Card = {
name: {
en: "Tyrogue",
},
illustrator: "Tomokazu Komiya",
rarity: "Uncommon",
category: "Pokemon",
set: Set,
dexId: [
236,
],
hp: 30,
types: [
"Fighting",
],
stage: "Basic",
attacks: [
{
cost: [
"Fighting",
],
name: {
en: "Energy Punch",
},
effect: {
en: "Flip a coin. If heads, discard a Special Energy card attached to the Defending Pokémon. If tails, this attack does nothing.",
},
},
],
}
export default card