1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-23 03:12:10 +00:00
Florian Bouillon 2e18aa4aac
Sword & Shield Fixes (#84)
* some fixes

Signed-off-by: Avior <github@avior.me>

* Some more changes

Signed-off-by: Avior <github@avior.me>

* u

Signed-off-by: Avior <github@avior.me>

* continuing update

Signed-off-by: Avior <github@avior.me>

* Finished ?

Signed-off-by: Avior <github@avior.me>

* Removed files that were not meant to be

* Remoed even more files
2021-10-26 10:40:03 +02:00

79 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 '../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",
variants: {
normal: true,
reverse: true,
holo: false,
firstEdition: false
},
stage: "Basic",
description: {
en: "It eats berries nonstop—a habit that has made it more resilient than it looks. It'll show up on farms, searching for yet more berries."
}
}
export default card