mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 03:12:10 +00:00
48 lines
801 B
TypeScript
48 lines
801 B
TypeScript
import { Card } from "../../../interfaces"
|
|
import Set from "../Fusion Strike"
|
|
|
|
const card: Card = {
|
|
set: Set,
|
|
|
|
name: {
|
|
en: "Tsareena V",
|
|
fr: "Sucreine V",
|
|
es: "Tsareena V",
|
|
it: "Tsareena V",
|
|
pt: "Tsareena V",
|
|
de: "Fruyal V"
|
|
},
|
|
|
|
rarity: "Ultra Rare",
|
|
category: "Pokemon",
|
|
hp: 200,
|
|
types: ["Grass"],
|
|
stage: "Basic",
|
|
suffix: "V",
|
|
retreat: 2,
|
|
regulationMark: "E",
|
|
illustrator: "PLANETA Mochizuki",
|
|
|
|
attacks: [{
|
|
cost: ["Grass", "Colorless"],
|
|
|
|
name: {
|
|
en: "Queen's Orders"
|
|
},
|
|
|
|
damage: "20+",
|
|
|
|
effect: {
|
|
en: "You may discard any number of your Benched Pokémon. This attack does 40 more damage for each Benched Pokémon you discarded in this way."
|
|
}
|
|
}],
|
|
|
|
variants: {
|
|
normal: false,
|
|
reverse: false,
|
|
holo: true,
|
|
firstEdition: false
|
|
}
|
|
}
|
|
|
|
export default card |