1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-07 09:47:51 +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

66 lines
1.5 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: "Swoobat",
fr: "Rhinolove",
es: "Swoobat",
it: "Swoobat",
pt: "Swoobat",
de: "Fletiamo"
},
rarity: "Uncommon",
category: "Pokemon",
hp: 90,
types: ["Psychic"],
stage: "Stage1",
illustrator: "nagimiso",
attacks: [{
name: {
en: "Synchro Woofer",
fr: "Fréquence Synchro",
es: "Frecuencia Sincronizada",
it: "Sincrowoofer",
pt: "Synchro Woofer",
de: "Synchro-Woofer"
},
effect: {
en: "If you have the same number of cards in your hand as your opponent, this attack does 80 more damage.",
fr: "Si vous avez le même nombre de cartes dans votre main que votre adversaire, cette attaque inflige 80 dégâts supplémentaires.",
es: "Si tienes la misma cantidad de cartas en tu mano que tu rival, este ataque hace 80 puntos de daño más.",
it: "Se hai lo stesso numero di carte in mano del tuo avversario, questo attacco infligge 80 danni in più.",
pt: "If you have the same number of cards in your hand as your opponent, this attack does 80 more damage.",
de: "Wenn du genauso viele Karten auf der Hand hast wie dein Gegner, fügt diese Attacke 80 Schadenspunkte mehr zu."
},
damage: "30+",
cost: ["Psychic"]
}],
weaknesses: [{
type: "Lightning",
value: "×2"
}],
resistances: [{
type: "Fighting",
value: "-30"
}],
retreat: 1
}
export default card