1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-28 22:02:15 +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

95 lines
1.6 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 '../Crimson Invasion'
const card: Card = {
name: {
en: "Zweilous",
fr: "Diamat",
es: "Zweilous",
it: "Zweilous",
pt: "Zweilous",
de: "Duodino"
},
illustrator: "kodama",
rarity: "Uncommon",
category: "Pokemon",
set: Set,
dexId: [
634,
],
hp: 90,
types: [
"Darkness",
],
evolveFrom: {
en: "Deino",
fr: "Solochi",
},
stage: "Stage1",
attacks: [
{
cost: [
"Darkness",
"Colorless",
],
name: {
en: "Headbutt",
fr: "Coup dBoule",
es: "Golpe Cabeza",
it: "Bottintesta",
pt: "Cabeçada",
de: "Kopfnuss"
},
damage: 30,
},
{
cost: [
"Darkness",
"Darkness",
"Colorless",
],
name: {
en: "Double Hit",
fr: "Coup Double",
es: "Doble Golpe",
it: "Doppiosmash",
pt: "Golpe Duplo",
de: "Doppelschlag"
},
effect: {
en: "Flip 2 coins. This attack does 60 damage for each heads.",
fr: "Lancez 2 pièces. Cette attaque inflige 60 dégâts multipliés par le nombre de côtés face.",
es: "Lanza 2 monedas. Este ataque hace 60 puntos de daño por cada cara.",
it: "Lancia due volte una moneta. Questo attacco infligge 60 danni ogni volta che esce testa.",
pt: "Jogue 2 moedas. Este ataque causa 60 pontos de dano para cada cara.",
de: "Wirf 2 Münzen. Diese Attacke fügt 60 Schadenspunkte pro Kopf zu."
},
damage: "60×",
},
],
weaknesses: [
{
type: "Fighting",
value: "×2"
},
],
resistances: [
{
type: "Psychic",
value: "-20"
},
],
retreat: 2,
}
export default card