1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-08-03 21:02:02 +00:00
Files
cards-database/data/Pokémon TCG Pocket/Wisdom of Sea and Sky/004.ts

44 lines
696 B
TypeScript

import { Card } from "../../../interfaces"
import Set from "../Wisdom of Sea and Sky"
const card: Card = {
set: Set,
name: {
en: "Tangela"
},
illustrator: "OOYAMA",
rarity: "One Diamond",
category: "Pokemon",
hp: 80,
types: ["Grass"],
description: {
en: "Hidden beneath a tangle of vines that grows\nnonstop even if the vines are torn off, this\nPokémon's true appearance remains a mystery."
},
stage: "Basic",
attacks: [{
name: {
en: "Sleep Powder"
},
damage: 20,
cost: ["Grass", "Colorless"],
effect: {
en: "Your opponent's Active Pokémon is now Asleep."
}
}],
weaknesses: [{
type: "Fire",
value: "+20"
}],
retreat: 2
}
export default card