1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-14 16:39:18 +00:00

feat: add Celestial Guardians (#716)

This commit is contained in:
2025-04-30 09:45:00 +02:00
committed by GitHub
parent a550cf079c
commit 51e017e9cc
240 changed files with 10215 additions and 0 deletions

View File

@ -0,0 +1,48 @@
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