1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-26 12:52:13 +00:00
Florian Bouillon 96f34fcafb
Added informations on more languages for Sword & Shield cards
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2021-06-29 17:20:26 +02:00

80 lines
2.3 KiB
TypeScript
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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: "Fulgudog",
en: "Boltund",
es: "Boltund",
it: "Boltund",
pt: "Boltund",
de: "Bellektro"
},
illustrator: "Kagemaru Himeno",
rarity: "Ultra Rare",
category: "Pokemon",
hp: 130,
types: ["Lightning"],
evolveFrom: {
fr: "Voltoutou",
en: "Yamper"
},
attacks: [{
name: {
fr: "Grosse Morsure",
en: "Big Bite",
es: "Gran Mordisco",
it: "Grande Morso",
pt: "Mordidona",
de: "Mächtiger Biss"
},
effect: {
fr: "Pendant le prochain tour de votre adversaire, le Pokémon Défenseur ne peut pas battre en retraite.",
en: "During your opponents next turn, the Defending Pokémon cant retreat.",
es: "Durante el próximo turno de tu rival, el Pokémon Defensor no puede retirarse.",
it: "Durante il prossimo turno del tuo avversario, il Pokémon difensore non può ritirarsi.",
pt: "Durante o próximo turno do seu oponente, o Pokémon Defensor não poderá recuar.",
de: "Während des nächsten Zuges deines Gegners kann sich das Verteidigende Pokémon nicht zurückziehen."
},
damage: 50,
cost: ["Colorless", "Colorless"]
}, {
name: {
fr: "Crocs Combatifs",
en: "Fighting Fangs",
es: "Colmillos Luchadores",
it: "Zanne Combattenti",
pt: "Caninos de Luta",
de: "Kämpfende Reißzähne"
},
effect: {
fr: "Si le Pokémon Actif de votre adversaire est un Pokémon-V ou un Pokémon-GX, cette attaque inflige 90 dégâts supplémentaires.",
en: "If your opponents Active Pokémon is a Pokémon V or Pokémon-GX, this attack does 90 more damage.",
es: "Si el Pokémon Activo de tu rival es un Pokémon V o un Pokémon-GX, este ataque hace 90 puntos de daño más.",
it: "Se il Pokémon attivo del tuo avversario è un Pokémon-V o un Pokémon-GX, questo attacco infligge 90 danni in più.",
pt: "Se o Pokémon Ativo do seu oponente for um Pokémon V ou um Pokémon-GX, este ataque causará 90 pontos de dano a mais.",
de: "Wenn das Aktive Pokémon deines Gegners ein Pokémon-V oder Pokémon-GX ist, fügt diese Attacke 90 Schadenspunkte mehr zu."
},
damage: "90+",
cost: ["Lightning", "Colorless", "Colorless"]
}],
weaknesses: [{
type: "Fighting",
value: "×2"
}],
retreat: 1,
regulationMark: "D"
}
export default card