1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-23 03:12: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

86 lines
1.8 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 '../Cosmic Eclipse'
const card: Card = {
name: {
en: "Drampa",
fr: "Draïeul",
es: "Drampa",
it: "Drampa",
pt: "Drampa",
de: "Sen-Long"
},
illustrator: "Naoki Saito",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
780,
],
hp: 120,
types: [
"Dragon",
],
stage: "Basic",
attacks: [
{
cost: [
"Colorless",
],
name: {
en: "Dragon Claw",
fr: "Dracogriffe",
es: "Garra Dragón",
it: "Dragartigli",
pt: "Garra de Dragão",
de: "Drachenklaue"
},
damage: 20,
},
{
cost: [
"Colorless",
"Colorless",
"Colorless",
],
name: {
en: "Dragon Arcana",
fr: "Savoir Draconique",
es: "Arcano Draco",
it: "Dragomanzia",
pt: "Dragões Arcanos",
de: "Drachen-Arkana"
},
effect: {
en: "If this Pokémon has 2 or more different types of basic Energy attached to it, this attack does 70 more damage.",
fr: "Si 2 types dÉnergie de base ou plus sont attachées à ce Pokémon, cette attaque inflige 70 dégâts supplémentaires.",
es: "Si este Pokémon tiene 2 o más tipos de Energía Básica diferentes unidas a él, este ataque hace 70 puntos de daño más.",
it: "Se questo Pokémon ha due o più Energie base di tipo diverso assegnate, questo attacco infligge 70 danni in più.",
pt: "Se este Pokémon tiver 2 ou mais tipos diferentes de Energia básica ligados a ele, este ataque causará 70 pontos de dano a mais.",
de: "Wenn an dieses Pokémon mindestens 2 verschiedene Basis-Energietypen angelegt sind, fügt diese Attacke 70 Schadenspunkte mehr zu."
},
damage: "70+",
},
],
weaknesses: [
{
type: "Fairy",
value: "×2"
},
],
retreat: 1,
}
export default card