1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-27 18:39:54 +00:00

48 lines
744 B
TypeScript

import { Card } from "../../../interfaces"
import Set from "../Celestial Guardians"
const card: Card = {
set: Set,
name: {
en: "Tsareena"
},
illustrator: "Hasuno",
rarity: "Three Diamond",
category: "Pokemon",
hp: 130,
types: ["Grass"],
evolveFrom: {
en: "Steenee"
},
description: {
en: "This Pokémon is proud and aggressive. However, it is said that a Tsareena will instantly become calm if someone touches the crown on its calyx."
},
stage: "Stage2",
attacks: [{
name: {
en: "Three Kick Combo"
},
damage: 50,
cost: ["Grass"],
effect: {
en: "Flip 3 coins. This attack does 50 damage for each heads."
}
}],
weaknesses: [{
type: "Fire",
value: "+20"
}],
retreat: 2
}
export default card