1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-23 03:12:10 +00:00
TCGdex [Bot] 7e3cf7aa08
editor: fix Paldea Evolved variants (#510)
Co-authored-by: Aviortheking <git@avior.me>
2024-07-03 16:28:15 +02:00

37 lines
933 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: "Special illustration 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: {
normal: false,
reverse: false
}
}
export default card