1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-30 14:52:09 +00:00
Florian Bouillon dc0dcff103
Added Sun & Moon for other languages
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2021-06-30 14:12:31 +02:00

88 lines
1.4 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 '../Unified Minds'
const card: Card = {
name: {
en: "Excadrill",
fr: "Minotaupe",
es: "Excadrill",
it: "Excadrill",
pt: "Excadrill",
de: "Stalobor"
},
illustrator: "Kyoko Umemoto",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
530,
],
hp: 120,
types: [
"Fighting",
],
evolveFrom: {
en: "Drilbur",
fr: "Rototaupe",
},
stage: "Stage1",
attacks: [
{
cost: [
"Fighting",
],
name: {
en: "Rototiller",
fr: "Fertilisation",
es: "Fertilizante",
it: "Aracampo",
pt: "Rototiller",
de: "Pflüger"
},
effect: {
en: "Shuffle 4 cards from your discard pile into your deck.",
fr: "Mélangez 4 cartes de votre pile de défausse avec votre deck.",
es: "Pon 4 cartas de tu pila de descartes en tu baraja y baraja todas las cartas.",
it: "Rimischia quattro carte dalla tua pila degli scarti nel tuo mazzo.",
pt: "Embaralhe 4 cartas da sua pilha de descarte no seu baralho.",
de: "Mische 4 Karten aus deinem Ablagestapel in dein Deck."
},
},
{
cost: [
"Fighting",
"Colorless",
"Colorless",
],
name: {
en: "Slash",
fr: "Tranche",
es: "Cuchillada",
it: "Lacerazione",
pt: "Talho",
de: "Schlitzer"
},
damage: 90,
},
],
weaknesses: [
{
type: "Grass",
value: "×2"
},
],
retreat: 2,
}
export default card