1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-20 23:29:55 +00:00

71 lines
905 B
TypeScript

import { Card } from '../../../interfaces'
import Set from '../Mysterious Treasures'
const card: Card = {
name: {
en: "Tropius",
},
illustrator: "Kazuyuki Kano",
rarity: "Uncommon",
category: "Pokemon",
set: Set,
dexId: [
357,
],
hp: 80,
types: [
"Grass",
],
stage: "Basic",
attacks: [
{
cost: [
"Grass",
],
name: {
en: "Bonus Leaf",
},
effect: {
en: "Remove 3 damage counters from each of your Benched Pokémon that has any Grass Energy attached to it.",
},
},
{
cost: [
"Grass",
"Colorless",
],
name: {
en: "Whirlwind",
},
effect: {
en: "Your opponent switches the Defending Pokémon with 1 of his or her Benched Pokémon.",
},
damage: 30,
},
],
weaknesses: [
{
type: "Fire",
value: "+20"
},
],
resistances: [
{
type: "Fightning",
value: "-20"
},
],
}
export default card