1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-25 12:22:14 +00:00
Florian Bouillon 2e18aa4aac
Sword & Shield Fixes (#84)
* some fixes

Signed-off-by: Avior <github@avior.me>

* Some more changes

Signed-off-by: Avior <github@avior.me>

* u

Signed-off-by: Avior <github@avior.me>

* continuing update

Signed-off-by: Avior <github@avior.me>

* Finished ?

Signed-off-by: Avior <github@avior.me>

* Removed files that were not meant to be

* Remoed even more files
2021-10-26 10:40:03 +02:00

69 lines
2.0 KiB
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import { Card } from '../../../interfaces'
import Set from '../Evolving Skies'
const card: Card = {
set: Set,
variants: {
normal: true,
reverse: true,
holo: false,
firstEdition: false
},
name: {
en: "Smeargle",
fr: "Queulorior",
es: "Smeargle",
it: "Smeargle",
pt: "Smeargle",
de: "Farbeagle"
},
rarity: "Rare",
category: "Pokemon",
hp: 80,
types: ["Colorless"],
stage: "Basic",
illustrator: "Kouki Saitou",
attacks: [{
name: {
en: "Live Painting",
fr: "Toile Vivante",
es: "Pintura en Vivo",
it: "Pittura dal Vivo",
pt: "Live Painting",
de: "Live-Malerei"
},
effect: {
en: "Reveal any number of basic Energy cards from your hand. This attack does 30 more damage for each type of basic Energy you revealed in this way.",
fr: "Montrez autant de cartes Énergie de base que vous le voulez de votre main. Cette attaque inflige 30 dégâts supplémentaires pour chaque type d'Énergie de base montrée de cette façon.",
es: "Enseña cualquier cantidad de cartas de Energía Básica de tu mano. Este ataque hace 30 puntos de daño más por cada tipo de Energía Básica que hayas enseñado de esta manera.",
it: "Mostra un numero qualsiasi di carte Energia base che hai in mano. Questo attacco infligge 30 danni in più per ogni tipo di Energia base che hai mostrato in questo modo.",
pt: "Reveal any number of basic Energy cards from your hand. This attack does 30 more damage for each type of basic Energy you revealed in this way.",
de: "Zeige deinem Gegner beliebig viele Basis-Energiekarten auf deiner Hand. Diese Attacke fügt für jeden auf diese Weise gezeigten Basis-Energietyp 30 Schadenspunkte mehr zu."
},
damage: "30+",
cost: ["Colorless", "Colorless"]
}],
weaknesses: [{
type: "Fighting",
value: "×2"
}],
retreat: 1,
dexId: [235],
description: {
en: "It draws symbols with the fluid that oozes from the tip of its tail. Depending on the symbol, Smeargle fanatics will pay big money for them."
},
regulationMark: "E"
}
export default card