1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-07 01:37:52 +00:00
Florian Bouillon b46b2c4fb9
Updated Evolving Skies with attacks and other languages
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2021-08-28 16:54:37 +02:00

73 lines
1.9 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 '../Evolving Skies'
const card: Card = {
set: Set,
variants: {
normal: true,
reverse: true,
holo: false,
firstEdition: false
},
name: {
en: "Seismitoad",
fr: "Crapustule",
es: "Seismitoad",
it: "Seismitoad",
pt: "Seismitoad",
de: "Branawarz"
},
rarity: "Rare",
category: "Pokemon",
hp: 170,
types: ["Fighting"],
stage: "Stage2",
illustrator: "Pani Kobayashi",
attacks: [{
name: {
en: "Shaky Wave",
fr: "Onde Tremblante",
es: "Onda Tambaleante",
it: "Onda Tremula",
pt: "Shaky Wave",
de: "Wankender Boden"
},
effect: {
en: "During your opponents next turn, the Defending Pokémons attacks cost Colorless more, and its Retreat Cost is Colorless more.",
fr: "Pendant le prochain tour de votre adversaire, les attaques du Pokémon Défenseur coûtent Colorless de plus et son Coût de Retraite augmente de Colorless.",
es: "Durante el próximo turno de tu rival, los ataques del Pokémon Defensor cuestan Colorless más, y su Coste de Retirada es de Colorless más.",
it: "Durante il prossimo turno del tuo avversario, il costo degli attacchi del Pokémon difensore aumenta di Colorless e il suo costo di ritirata aumenta di Colorless.",
pt: "During your opponents next turn, the Defending Pokémons attacks cost Colorless more, and its Retreat Cost is Colorless more.",
de: "Während des nächsten Zuges deines Gegners erhöhen sich die Kosten der Attacken des Verteidigenden Pokémon um Colorless, und seine Rückzugskosten erhöhen sich um Colorless."
},
damage: 60,
cost: ["Fighting"]
}, {
name: {
en: "Hyper Voice",
fr: "Mégaphone",
es: "Vozarrón",
it: "Granvoce",
pt: "Hyper Voice",
de: "Schallwelle"
},
damage: 160,
cost: ["Fighting", "Colorless", "Colorless", "Colorless"]
}],
weaknesses: [{
type: "Grass",
value: "×2"
}],
retreat: 3
}
export default card