1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-25 04:12:11 +00:00
Florian Bouillon 96f34fcafb
Added informations on more languages for Sword & Shield cards
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2021-06-29 17:20:26 +02:00

65 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 '../Chilling Reign'
const card: Card = {
set: Set,
name: {
en: "Skwovet",
fr: "Rongourmand",
es: "Skwovet",
it: "Skwovet",
pt: "Skwovet",
de: "Raffel"
},
illustrator: "OKACHEKE",
rarity: "Common",
category: "Pokemon",
hp: 60,
types: ["Colorless"],
attacks: [{
name: {
en: "Scrounge",
fr: "Fouissage",
es: "Rebuscar",
it: "Sbafo",
pt: "Vasculhada",
de: "Abstauben"
},
effect: {
en: "Put a Pokémon Tool card from your discard pile into your hand.",
fr: "Ajoutez une carte Outil Pokémon de votre pile de défausse à votre main.",
es: "Pon 1 carta de Herramienta Pokémon de tu pila de descartes en tu mano.",
it: "Prendi una carta Oggetto Pokémon dalla tua pila degli scarti e aggiungila alle carte che hai in mano.",
pt: "Coloque uma carta de Ferramenta Pokémon da sua pilha de descarte na sua mão.",
de: "Nimm 1 Pokémon-Ausrüstung aus deinem Ablagestapel auf deine Hand."
},
cost: ["Colorless"]
}, {
name: {
en: "Gnaw",
fr: "Ronge",
es: "Roer",
it: "Rosicchiamento",
pt: "Roída",
de: "Nagen"
},
damage: 10,
cost: ["Colorless"]
}],
weaknesses: [{
type: "Fighting",
value: "×2"
}],
retreat: 1,
regulationMark: "E"
}
export default card