1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-06 17:27: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

61 lines
1.5 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: "Seedot",
fr: "Grainipiot",
es: "Seedot",
it: "Seedot",
pt: "Seedot",
de: "Samurzel"
},
rarity: "Common",
category: "Pokemon",
hp: 50,
types: ["Grass"],
stage: "Basic",
illustrator: "otumami",
attacks: [{
name: {
en: "Astonish",
fr: "Étonnement",
es: "Impresionar",
it: "Sgomento",
pt: "Astonish",
de: "Erstauner"
},
effect: {
en: "Choose a random card from your opponents hand. Your opponent reveals that card and shuffles it into their deck.",
fr: "Choisissez une carte au hasard dans la main de votre adversaire. Votre adversaire montre cette carte, puis la mélange avec son deck.",
es: "Elige 1 carta aleatoria de la mano de tu rival. Tu rival enseña esa carta, la pone en su baraja y las baraja todas.",
it: "Scegli una carta a caso dalla mano del tuo avversario. Il tuo avversario mostra quella carta e la rimischia nel suo mazzo.",
pt: "Choose a random card from your opponents hand. Your opponent reveals that card and shuffles it into their deck.",
de: "Wähle 1 zufällige Karte aus der Hand deines Gegners. Dein Gegner zeigt dir jene Karte und mischt sie in sein Deck."
},
damage: 10,
cost: ["Colorless", "Colorless"]
}],
weaknesses: [{
type: "Fire",
value: "×2"
}],
retreat: 1
}
export default card