1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-03 20:39:55 +00:00

66 lines
912 B
TypeScript
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import { Card } from '../../../interfaces'
import Set from '../Darkness Ablaze'
const card: Card = {
name: {
en: "Tsareena",
},
illustrator: "so-taro",
rarity: "Rare",
category: "Pokemon",
set: Set,
hp: 150,
types: [
"Grass",
],
evolveFrom: {
en: "Steenee",
},
attacks: [
{
cost: [
"Colorless",
],
name: {
en: "Power Whip",
},
effect: {
en: "This attack does 20 damage to 1 of your opponents Pokémon for each Energy attached to this Pokémon. (Dont apply Weakness and Resistance for Benched Pokémon.)",
},
},
{
cost: [
"Grass",
"Colorless",
],
name: {
en: "Time Out Kick",
},
effect: {
en: "You may put an Energy attached to your opponents Active Pokémon into their hand.",
},
damage: 100,
},
],
weaknesses: [
{
type: "Fire",
value: "×2"
},
],
retreat: 2,
}
export default card