1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-18 18:29:19 +00:00
Files
cards-database/data/Pokémon TCG Pocket/Genetic Apex/060.ts
2024-11-28 00:34:09 +01:00

31 lines
381 B
TypeScript

import { Card } from "../../../interfaces"
import Set from "../Genetic Apex"
const card: Card = {
set: Set,
name: {
en: "Poliwhirl"
},
category: "Pokemon",
hp: 90,
types: ["Water"],
stage: "Stage1",
attacks: [{
cost: ["Colorless", "Colorless"],
name: {
en: "Knuckle Punch"
},
damage: "40"
}],
retreat: 2,
rarity: "Two Diamond"
}
export default card