1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-25 12:22:14 +00:00
Florian Bouillon e500777516 Started to add variants information for the two most recent sets
Signed-off-by: Florian BOUILLON <florian.bouillon@delta-wings.net>
2021-07-21 12:16:52 +02:00

78 lines
1.4 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 '../Chilling Reign'
const card: Card = {
set: Set,
name: {
en: "Whirlipede",
fr: "Scobolide",
es: "Whirlipede",
it: "Whirlipede",
pt: "Whirlipede",
de: "Rollum"
},
illustrator: "hatachu",
rarity: "Uncommon",
category: "Pokemon",
hp: 90,
types: ["Darkness"],
evolveFrom: {
en: "Venipede",
fr: "Venipatte"
},
attacks: [{
name: {
en: "Poison Sting",
fr: "Dard-Venin",
es: "Picotazo Veneno",
it: "Velenospina",
pt: "Ferrão Venenoso",
de: "Giftstachel"
},
effect: {
en: "Your opponents Active Pokémon is now Poisoned.",
fr: "Le Pokémon Actif de votre adversaire est maintenant Empoisonné.",
es: "El Pokémon Activo de tu rival pasa a estar Envenenado.",
it: "Il Pokémon attivo del tuo avversario viene avvelenato.",
pt: "O Pokémon Ativo do seu oponente agora está Envenenado.",
de: "Das Aktive Pokémon deines Gegners ist jetzt vergiftet."
},
damage: 20,
cost: ["Darkness"]
}, {
name: {
en: "Rolling Tackle",
fr: "Roulé-Boulé",
es: "Placaje Giro",
it: "Rollazione",
pt: "Golpe de Colisão Rolante",
de: "Rolltackle"
},
damage: 50,
cost: ["Darkness", "Colorless", "Colorless"]
}],
weaknesses: [{
type: "Fighting",
value: "×2"
}],
retreat: 3,
regulationMark: "E",
variants: {
normal: true,
reverse: true,
holo: false,
firstEdition: false
}
}
export default card