1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-26 21:02:15 +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

71 lines
1.5 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 '../Shining Fates'
const card: Card = {
set: Set,
name: {
fr: "Voltoutou",
en: "Yamper",
es: "Yamper",
it: "Yamper",
pt: "Yamper",
de: "Voldi"
},
illustrator: "sowsow",
rarity: "Ultra Rare",
category: "Pokemon",
hp: 70,
types: ["Lightning"],
attacks: [{
name: {
fr: "Hurlement",
en: "Roar",
es: "Rugido",
it: "Boato",
pt: "Rugido",
de: "Brüller"
},
effect: {
fr: "Votre adversaire échange son Pokémon Actif contre l'un de ses Pokémon de Banc.",
en: "Your opponent switches their Active Pokémon with 1 of their Benched Pokémon.",
es: "Tu rival cambia su Pokémon Activo por 1 de sus Pokémon en Banca.",
it: "Il tuo avversario scambia il suo Pokémon attivo con uno della sua panchina.",
pt: "Seu oponente troca o próprio Pokémon Ativo por 1 dos Pokémon no Banco dele(a).",
de: "Dein Gegner tauscht sein Aktives Pokémon gegen 1 Pokémon auf seiner Bank aus."
},
cost: ["Colorless"]
}, {
name: {
fr: "Choc Statique",
en: "Static Shock",
es: "Impacto Estático",
it: "Shock Statico",
pt: "Choque de Estática",
de: "Statischer Schock"
},
damage: 10,
cost: ["Lightning"]
}],
weaknesses: [{
type: "Fighting",
value: "×2"
}],
retreat: 1,
regulationMark: "D",
stage: "Basic",
description: {
en: "This Pokémon is very popular as a herding dog in the Galar region. As it runs, it generates electricity from the base of its tail."
}
}
export default card