mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-22 19:02:10 +00:00
36 lines
482 B
TypeScript
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
|