mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-24 11:52:16 +00:00
90 lines
1.7 KiB
TypeScript
90 lines
1.7 KiB
TypeScript
import { Card } from '../../../interfaces'
|
||
import Set from '../Cosmic Eclipse'
|
||
|
||
const card: Card = {
|
||
name: {
|
||
en: "Weavile",
|
||
fr: "Dimoret",
|
||
es: "Weavile",
|
||
it: "Weavile",
|
||
pt: "Weavile",
|
||
de: "Snibunna"
|
||
},
|
||
|
||
illustrator: "nagimiso",
|
||
rarity: "Secret Rare",
|
||
category: "Pokemon",
|
||
set: Set,
|
||
|
||
dexId: [
|
||
461,
|
||
],
|
||
|
||
hp: 90,
|
||
|
||
types: [
|
||
"Water",
|
||
],
|
||
|
||
evolveFrom: {
|
||
en: "Sneasel",
|
||
fr: "Farfuret",
|
||
},
|
||
|
||
stage: "Stage1",
|
||
|
||
attacks: [
|
||
{
|
||
cost: [
|
||
"Darkness",
|
||
],
|
||
name: {
|
||
en: "Nasty Plot",
|
||
fr: "Machination",
|
||
es: "Maquinación",
|
||
it: "Congiura",
|
||
pt: "Trama Maldosa",
|
||
de: "Ränkeschmied"
|
||
},
|
||
effect: {
|
||
en: "Search your deck for up to 2 cards and put them into your hand. Then, shuffle your deck.",
|
||
fr: "Cherchez jusqu’à 2 cartes dans votre deck, puis ajoutez-les à votre main. Mélangez ensuite votre deck.",
|
||
es: "Busca en tu baraja hasta 2 cartas y ponlas en tu mano. Después, baraja las cartas de tu baraja.",
|
||
it: "Cerca nel tuo mazzo fino a due carte e aggiungile alle carte che hai in mano. Poi rimischia le carte del tuo mazzo.",
|
||
pt: "Procure por até 2 cartas no seu baralho e coloque-as na sua mão. Em seguida, embaralhe o seu baralho.",
|
||
de: "Durchsuche dein Deck nach bis zu 2 Karten und nimm sie auf deine Hand. Mische anschließend dein Deck."
|
||
},
|
||
|
||
},
|
||
{
|
||
cost: [
|
||
"Darkness",
|
||
"Darkness",
|
||
"Colorless",
|
||
],
|
||
name: {
|
||
en: "Slashing Claw",
|
||
fr: "Griffe Taillante",
|
||
es: "Garra Cuchillazo",
|
||
it: "Artigli Laceranti",
|
||
pt: "Garra Cortadora",
|
||
de: "Schlitzende Klaue"
|
||
},
|
||
|
||
damage: 110,
|
||
|
||
},
|
||
],
|
||
|
||
weaknesses: [
|
||
{
|
||
type: "Metal",
|
||
value: "×2"
|
||
},
|
||
],
|
||
|
||
retreat: 0
|
||
}
|
||
|
||
export default card
|