mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-15 08:59:18 +00:00
feat: Add Scarlet & violet three first sets (#446)
Some checks failed
Build / build (push) Failing after 59s
Some checks failed
Build / build (push) Failing after 59s
This commit is contained in:
63
data/Scarlet & Violet/Paldea Evolved/084.ts
Normal file
63
data/Scarlet & Violet/Paldea Evolved/084.ts
Normal file
@ -0,0 +1,63 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Paldea Evolved"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
fr: "Grodoudou",
|
||||
en: "Wigglytuff",
|
||||
es: "Wigglytuff",
|
||||
it: "Wigglytuff",
|
||||
pt: "Wigglytuff",
|
||||
de: "Knuddeluff"
|
||||
},
|
||||
|
||||
rarity: "Rare",
|
||||
category: "Pokemon",
|
||||
hp: 110,
|
||||
types: ["Psychic"],
|
||||
stage: "Stage1",
|
||||
|
||||
abilities: [{
|
||||
type: "Ability",
|
||||
|
||||
name: {
|
||||
fr: "Thérapie Bouboule",
|
||||
en: "Balloon Therapy",
|
||||
es: "Terapia Globo",
|
||||
it: "Terapia Pallone",
|
||||
pt: "Terapia de Balão",
|
||||
de: "Ballontherapie"
|
||||
},
|
||||
|
||||
effect: {
|
||||
fr: "Une fois pendant votre tour, vous pouvez attacher une carte Énergie Thérapeutique de votre main à l'un de vos Pokémon.",
|
||||
en: "Once during your turn, you may attach a Therapeutic Energy card from your hand to 1 of your Pokémon.",
|
||||
es: "Una vez durante tu turno, puedes unir 1 carta de Energía Terapéutica de tu mano a uno de tus Pokémon.",
|
||||
it: "Una sola volta durante il tuo turno, puoi assegnare a uno dei tuoi Pokémon una carta Energia Terapeutica dalla tua mano.",
|
||||
pt: "Uma vez durante o seu turno, você poderá ligar uma carta Energia Terapêutica da sua mão a 1 dos seus Pokémon.",
|
||||
de: "Einmal während deines Zuges kannst du 1 Therapie-Energiekarte aus deiner Hand an 1 deiner Pokémon anlegen."
|
||||
}
|
||||
}],
|
||||
|
||||
attacks: [{
|
||||
cost: ["Psychic", "Colorless", "Colorless"],
|
||||
|
||||
name: {
|
||||
fr: "Coup Magique",
|
||||
en: "Magical Shot",
|
||||
es: "Disparo Mágico",
|
||||
it: "Magicolpo",
|
||||
pt: "Tiro Mágico",
|
||||
de: "Magischer Schuss"
|
||||
},
|
||||
|
||||
damage: 100
|
||||
}],
|
||||
|
||||
retreat: 2,
|
||||
regulationMark: "G"
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user