1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-07 01:37:52 +00:00
Benjamin Rousseliere 91dc66a494
Add missing pokemon card dex ids (#494)
Co-authored-by: Benjamin Rousseliere <benjamin.r@galadrim.fr>
2024-06-18 00:34:39 +02:00

97 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 '../Darkness Ablaze'
const card: Card = {
dexId: [634],
name: {
en: "Zweilous",
fr: "Diamat",
es: "Zweilous",
it: "Zweilous",
pt: "Zweilous",
de: "Duodino"
},
illustrator: "tetsuya koizumi",
rarity: "Uncommon",
category: "Pokemon",
set: Set,
hp: 100,
types: [
"Darkness",
],
evolveFrom: {
en: "Deino",
fr: "Solochi",
es: "Deino",
it: "Deino",
pt: "Deino",
de: "Kapuno"
},
attacks: [
{
cost: [
"Darkness",
"Colorless",
],
name: {
en: "Corkscrew Punch",
fr: "Poing Tire-Bouchon",
es: "Puño Tirabuzón",
it: "Pugno Rotante",
pt: "Soco Saca-rolha",
de: "Korkenzieherhieb"
},
damage: 30,
},
{
cost: [
"Darkness",
"Darkness",
"Colorless",
],
name: {
en: "Darkness Fang",
fr: "Croc Obscur",
es: "Colmillo de Oscuridad",
it: "Oscurizanna",
pt: "Presa Sombria",
de: "Fänge der Dunkelheit"
},
damage: 70,
},
],
weaknesses: [
{
type: "Grass",
value: "×2"
},
],
retreat: 2,
regulationMark: "D",
variants: {
normal: true,
reverse: true,
holo: false,
firstEdition: false
},
stage: "Stage1",
description: {
en: "While hunting for prey, Zweilous wanders its territory, its two heads often bickering over which way to go."
}
}
export default card