1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-28 02:40:11 +00:00
Khaleeq Ahmad 98bc4db193
Fix: Celestial Guardians corrections (#725)
Co-authored-by: Khaleeq Ahmad <1710642+khaleeqahmad@users.noreply.github.com>
2025-05-03 22:42:16 +00:00

49 lines
743 B
TypeScript

import { Card } from "../../../interfaces"
import Set from "../Celestial Guardians"
const card: Card = {
set: Set,
name: {
en: "Tsareena"
},
illustrator: "Ligton",
rarity: "One Star",
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: "50x",
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