1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-19 02:39:18 +00:00
Files
cards-database/data/Pokémon TCG Pocket/Genetic Apex/063.ts

36 lines
482 B
TypeScript

import { Card } from "../../../interfaces"
import Set from "../Genetic Apex"
const card: Card = {
set: Set,
name: {
en: "Tentacruel"
},
illustrator: "kodama",
category: "Pokemon",
hp: 110,
types: ["Water"],
stage: "Stage1",
attacks: [{
cost: ["Water", "Colorless"],
name: {
en: "Poison Tentacles"
},
effect: {
en: "Your opponent's Active Pokémon is now Poisoned."
},
damage: "50"
}],
retreat: 2,
rarity: "Two Diamond"
}
export default card