1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-29 19:09:54 +00:00

70 lines
1.0 KiB
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 '../Unified Minds'
const card: Card = {
name: {
en: "Tsareena",
fr: "Sucreine",
},
illustrator: "kirisAki",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
763,
],
hp: 140,
types: [
"Grass",
],
evolveFrom: {
en: "Steenee",
fr: "Candine",
},
stage: "Stage2",
abilities: [
{
type: "Ability",
name: {
en: "Queenly Reward",
fr: "Récompense Royale",
},
effect: {
en: "Once during your turn (before your attack), you may attach a Grass Energy card from your discard pile to your Active Pokémon.",
fr: "Une seule fois pendant votre tour (avant votre attaque), vous pouvez attacher une carte Énergie Grass de votre pile de défausse à votre Pokémon Actif.",
},
},
],
attacks: [
{
cost: [
"Grass",
"Colorless",
"Colorless",
],
name: {
en: "High Jump Kick",
fr: "Pied Voltige",
},
damage: 90,
},
],
weaknesses: [
{
type: "Fire",
value: "×2"
},
],
retreat: 2,
}
export default card