mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-05-29 19:09:54 +00:00
* some fixes Signed-off-by: Avior <github@avior.me> * Some more changes Signed-off-by: Avior <github@avior.me> * u Signed-off-by: Avior <github@avior.me> * continuing update Signed-off-by: Avior <github@avior.me> * Finished ? Signed-off-by: Avior <github@avior.me> * Removed files that were not meant to be * Remoed even more files
78 lines
1.3 KiB
TypeScript
78 lines
1.3 KiB
TypeScript
import { Card } from '../../../interfaces'
|
||
import Set from '../Sword & Shield'
|
||
|
||
const card: Card = {
|
||
name: {
|
||
en: "Drampa",
|
||
fr: "Draïeul",
|
||
es: "Drampa",
|
||
it: "Drampa",
|
||
pt: "Drampa",
|
||
de: "Sen-Long"
|
||
},
|
||
|
||
illustrator: "tetsuya koizumi",
|
||
rarity: "Rare",
|
||
category: "Pokemon",
|
||
set: Set,
|
||
hp: 130,
|
||
|
||
types: [
|
||
"Colorless",
|
||
],
|
||
|
||
stage: "Basic",
|
||
|
||
attacks: [
|
||
{
|
||
cost: [
|
||
"Colorless",
|
||
"Colorless",
|
||
],
|
||
name: {
|
||
en: "Dragon Pulse",
|
||
fr: "Draco-Choc",
|
||
es: "Pulso Dragón",
|
||
it: "Dragopulsar",
|
||
pt: "Pulso do Dragão",
|
||
de: "Drachenpuls"
|
||
},
|
||
effect: {
|
||
en: "Discard the top 2 cards of your deck.",
|
||
fr: "Défaussez les 2 cartes du dessus de votre deck.",
|
||
es: "Descarta las 2 primeras cartas de tu baraja.",
|
||
it: "Scarta le prime due carte del tuo mazzo.",
|
||
pt: "Descarte as 2 cartas de cima do seu baralho.",
|
||
de: "Lege die obersten 2 Karten deines Decks auf deinen Ablagestapel."
|
||
},
|
||
damage: 80,
|
||
|
||
},
|
||
],
|
||
|
||
weaknesses: [
|
||
{
|
||
type: "Fighting",
|
||
value: "×2"
|
||
},
|
||
],
|
||
|
||
retreat: 2,
|
||
regulationMark: "D",
|
||
|
||
variants: {
|
||
normal: true,
|
||
reverse: true,
|
||
holo: false,
|
||
firstEdition: false
|
||
},
|
||
|
||
description: {
|
||
en: "The mountains it calls home are nearly two miles in height. On rare occasions, it descends to play with the children living in the towns below."
|
||
},
|
||
|
||
dexId: [780]
|
||
}
|
||
|
||
export default card
|