1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-30 06:42:10 +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

93 lines
2.3 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 '../Unified Minds'
const card: Card = {
name: {
en: "Druddigon",
fr: "Drakkarmin",
es: "Druddigon",
it: "Druddigon",
pt: "Druddigon",
de: "Shardrago"
},
illustrator: "hatachu",
rarity: "Common",
category: "Pokemon",
set: Set,
dexId: [
621,
],
hp: 120,
types: [
"Dragon",
],
stage: "Basic",
attacks: [
{
cost: [
"Colorless",
"Colorless",
],
name: {
en: "Drag Off",
fr: "Traîne",
es: "Jalón",
it: "Trascinato Via",
pt: "Arrastar para Fora",
de: "Wegzerren"
},
effect: {
en: "Switch 1 of your opponents Benched Pokémon with their Active Pokémon. This attack does 30 damage to the new Active Pokémon.",
fr: "Échangez lun des Pokémon de Banc de votre adversaire avec son Pokémon Actif. Cette attaque inflige 30 dégâts au nouveau Pokémon Actif.",
es: "Cambia 1 de los Pokémon en Banca de tu rival por su Pokémon Activo. Este ataque hace 30 puntos de daño al nuevo Pokémon Activo.",
it: "Scambia uno dei Pokémon nella panchina del tuo avversario con il suo Pokémon attivo. Questo attacco infligge 30 danni al nuovo Pokémon attivo.",
pt: "Troque 1 dos Pokémon no Banco do seu oponente pelo Pokémon Ativo dele(a). Este ataque causa 30 pontos de dano ao novo Pokémon Ativo.",
de: "Tausche 1 Pokémon auf der Bank deines Gegners gegen sein Aktives Pokémon aus. Diese Attacke fügt dem neuen Aktiven Pokémon 30 Schadenspunkte zu."
},
},
{
cost: [
"Fire",
"Water",
"Colorless",
],
name: {
en: "Dragon Tail",
fr: "Draco-Queue",
es: "Cola Dragón",
it: "Codadrago",
pt: "Cauda do Dragão",
de: "Drachenrute"
},
effect: {
en: "Flip 2 coins. This attack does 100 damage for each heads.",
fr: "Lancez 2 pièces. Cette attaque inflige 100 dégâts pour chaque côté face.",
es: "Lanza 2 monedas. Este ataque hace 100 puntos de daño por cada cara.",
it: "Lancia due volte una moneta. Questo attacco infligge 100 danni ogni volta che esce testa.",
pt: "Jogue 2 moedas. Este ataque causa 100 pontos de dano para cada cara.",
de: "Wirf 2 Münzen. Diese Attacke fügt 100 Schadenspunkte pro Kopf zu."
},
damage: "100×",
},
],
weaknesses: [
{
type: "Fairy",
value: "×2"
},
],
retreat: 2,
}
export default card