mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-22 19:02:10 +00:00
37 lines
918 B
TypeScript
37 lines
918 B
TypeScript
import { Card } from "../../../interfaces"
|
|
import Set from "../Paldea Evolved"
|
|
|
|
const card: Card = {
|
|
set: Set,
|
|
|
|
name: {
|
|
fr: "Saguaro",
|
|
en: "Saguaro",
|
|
es: "Hugo",
|
|
it: "Guaro",
|
|
pt: "Saguaro",
|
|
de: "Saguaro"
|
|
},
|
|
|
|
rarity: "Ultra Rare",
|
|
category: "Trainer",
|
|
|
|
effect: {
|
|
fr: "Choisissez jusqu'à 2 de vos Pokémon, puis soignez 50 dégâts de chacun d'eux.",
|
|
en: "Choose up to 2 of your Pokémon and heal 50 damage from each of them.",
|
|
es: "Elige hasta 2 de tus Pokémon y cura 50 puntos de daño a cada uno de ellos.",
|
|
it: "Scegli fino a due dei tuoi Pokémon e cura ciascuno di essi da 50 danni.",
|
|
pt: "Escolha até 2 dos seus Pokémon e cure 50 pontos de dano de cada um deles.",
|
|
de: "Wähle bis zu 2 deiner Pokémon und heile 50 Schadenspunkte bei jedem von ihnen."
|
|
},
|
|
|
|
trainerType: "Supporter",
|
|
regulationMark: "G",
|
|
|
|
variants: {
|
|
reverse: false,
|
|
normal: false
|
|
}
|
|
}
|
|
|
|
export default card |