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

74 lines
1.3 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 '../Evolving Skies'
const card: Card = {
set: Set,
variants: {
normal: true,
reverse: true,
holo: false,
firstEdition: false
},
name: {
en: "Scrafty",
fr: "Baggaïd",
es: "Scrafty",
it: "Scrafty",
pt: "Scrafty",
de: "Irokex"
},
rarity: "Uncommon",
category: "Pokemon",
hp: 120,
types: ["Darkness"],
stage: "Stage1",
illustrator: "Yukiko Baba",
attacks: [{
name: {
en: "Headbutt",
fr: "Coup dBoule",
es: "Golpe Cabeza",
it: "Bottintesta",
pt: "Headbutt",
de: "Kopfnuss"
},
damage: 40,
cost: ["Colorless", "Colorless"]
}, {
name: {
en: "Shakedown",
fr: "Dépouiller",
es: "Conmocionar",
it: "Scossone",
pt: "Shakedown",
de: "Abschütteln"
},
effect: {
en: "Discard a random card from your opponents hand.",
fr: "Défaussez au hasard une carte de la main de votre adversaire.",
es: "Descarta 1 carta aleatoria de la mano de tu rival.",
it: "Scarta una carta a caso dalla mano del tuo avversario.",
pt: "Discard a random card from your opponents hand.",
de: "Lege 1 zufällige Karte aus der Hand deines Gegners auf seinen Ablagestapel."
},
damage: 90,
cost: ["Darkness", "Colorless", "Colorless"]
}],
weaknesses: [{
type: "Grass",
value: "×2"
}],
retreat: 2
}
export default card