1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-21 07:39:54 +00:00
Florian Bouillon 151c00be78
Updated informations (#23)
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2021-05-26 20:35:35 +02:00

72 lines
1.3 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 '../Darkness Ablaze'
const card: Card = {
name: {
en: "Tsareena",
fr: "Sucreine"
},
illustrator: "so-taro",
rarity: "Rare",
category: "Pokemon",
set: Set,
hp: 150,
types: [
"Grass",
],
evolveFrom: {
en: "Steenee",
fr: "Candine"
},
attacks: [
{
cost: [
"Colorless",
],
name: {
en: "Power Whip",
fr: "Mégafouet"
},
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.)",
fr: "Cette attaque inflige 20 dégâts à lun des Pokémon de votre adversaire pour chaque Énergie attachée à ce Pokémon. (Nappliquez ni la Faiblesse ni la Résistance aux Pokémon de Banc.)"
},
},
{
cost: [
"Grass",
"Colorless",
],
name: {
en: "Time Out Kick",
fr: "Mise au Coin Brusque"
},
effect: {
en: "You may put an Energy attached to your opponents Active Pokémon into their hand.",
fr: "Vous pouvez ajouter à la main de votre adversaire une Énergie attachée à son Pokémon Actif."
},
damage: 100,
},
],
weaknesses: [
{
type: "Fire",
value: "×2"
},
],
retreat: 2,
}
export default card