mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-26 21:02:15 +00:00
99 lines
2.5 KiB
TypeScript
99 lines
2.5 KiB
TypeScript
import { Card } from '../../../interfaces'
|
||
import Set from '../Furious Fists'
|
||
|
||
const card: Card = {
|
||
name: {
|
||
en: "Thundurus",
|
||
fr: "Fulguris",
|
||
es: "Thundurus",
|
||
it: "Thundurus",
|
||
pt: "Thundurus",
|
||
de: "Voltolos"
|
||
},
|
||
illustrator: "Hajime Kusajima",
|
||
rarity: "Rare",
|
||
category: "Pokemon",
|
||
|
||
set: Set,
|
||
dexId: [
|
||
642,
|
||
],
|
||
hp: 120,
|
||
types: [
|
||
"Lightning",
|
||
],
|
||
|
||
stage: "Basic",
|
||
|
||
|
||
attacks: [
|
||
{
|
||
cost: [
|
||
"Lightning",
|
||
"Colorless",
|
||
],
|
||
name: {
|
||
en: "Raging Thunder Punch",
|
||
fr: "Poing-Éclair Déchaîné",
|
||
es: "Puño Trueno Furioso",
|
||
it: "Tuonopugno Furioso",
|
||
pt: "Soco Trovão Devastador",
|
||
de: "Wütender Donnerschlag"
|
||
},
|
||
effect: {
|
||
en: "If your opponent's Active Pokémon has a Pokémon Tool card attached to it, this attack does 30 more damage.",
|
||
fr: "Si une carte Outil Pokémon est attachée au Pokémon Actif de votre adversaire, cette attaque inflige 30 dégâts supplémentaires.",
|
||
es: "Si el Pokémon Activo de tu rival tiene 1 carta de Herramienta Pokémon unida a él, este ataque hace 30 puntos de daño más.",
|
||
it: "Se il Pokémon attivo del tuo avversario ha una carta Oggetto Pokémon assegnata, questo attacco infligge 30 danni in più.",
|
||
pt: "Se o Pokémon Ativo do seu oponente possuir um card de Ferramenta Pokémon ligado a ele, esse ataque causará 30 de danos adicionais.",
|
||
de: "Wenn an das Aktive Pokémon deines Gegners eine Pokémon-Ausrüstung angelegt ist, fügt dieser Angriff 30 weitere Schadenspunkte zu."
|
||
},
|
||
damage: "30+",
|
||
|
||
},
|
||
{
|
||
cost: [
|
||
"Lightning",
|
||
"Lightning",
|
||
"Colorless",
|
||
],
|
||
name: {
|
||
en: "Lightning Slam",
|
||
fr: "Tacle Foudroyant",
|
||
es: "Golpe Rayo",
|
||
it: "Fulmischianto",
|
||
pt: "Pancada de Raios",
|
||
de: "Wuchtiger Einschlag"
|
||
},
|
||
effect: {
|
||
en: "This Pokémon can't use Lightning Slam during your next turn.",
|
||
fr: "Ce Pokémon ne peut pas utiliser Tacle Foudroyant pendant votre prochain tour.",
|
||
es: "Este Pokémon no puede usar Golpe Rayo durante tu próximo turno.",
|
||
it: "Durante il tuo prossimo turno, questo Pokémon non può usare Fulmischianto.",
|
||
pt: "Este Pokémon não poderá usar Pancada de Raios durante sua próxima vez de jogar.",
|
||
de: "Dieses Pokémon kann Wuchtiger Einschlag während deines nächsten Zuges nicht einsetzen."
|
||
},
|
||
damage: 100,
|
||
|
||
},
|
||
],
|
||
weaknesses: [
|
||
{
|
||
type: "Fighting",
|
||
value: "×2"
|
||
},
|
||
],
|
||
resistances: [
|
||
{
|
||
type: "Metal",
|
||
value: "-20"
|
||
},
|
||
],
|
||
retreat: 1,
|
||
|
||
|
||
|
||
}
|
||
|
||
export default card
|