mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-29 14:22:09 +00:00
92 lines
2.1 KiB
TypeScript
92 lines
2.1 KiB
TypeScript
import { Card } from '../../../interfaces'
|
||
import Set from '../Guardians Rising'
|
||
|
||
const card: Card = {
|
||
name: {
|
||
en: "Drampa",
|
||
fr: "Draïeul",
|
||
es: "Drampa",
|
||
it: "Drampa",
|
||
pt: "Drampa",
|
||
de: "Sen-Long"
|
||
},
|
||
illustrator: "match",
|
||
rarity: "Rare",
|
||
category: "Pokemon",
|
||
|
||
set: Set,
|
||
dexId: [
|
||
780,
|
||
],
|
||
hp: 120,
|
||
types: [
|
||
"Dragon",
|
||
],
|
||
|
||
stage: "Basic",
|
||
|
||
|
||
attacks: [
|
||
{
|
||
cost: [
|
||
"Colorless",
|
||
],
|
||
name: {
|
||
en: "Amass",
|
||
fr: "Amas",
|
||
es: "Amasar",
|
||
it: "Ammasso",
|
||
pt: "Acumular",
|
||
de: "Anhäufen"
|
||
},
|
||
effect: {
|
||
en: "Search your deck for a basic Energy card and attach it to this Pokémon. Then, shuffle your deck.",
|
||
fr: "Cherchez une carte Énergie de base dans votre deck et attachez-la à ce Pokémon. Mélangez ensuite votre deck.",
|
||
es: "Busca en tu baraja 1 carta de Energía Básica y únela a este Pokémon. Después, baraja las cartas de tu baraja.",
|
||
it: "Cerca nel tuo mazzo una carta Energia base e assegnala a questo Pokémon. Poi rimischia le carte del tuo mazzo.",
|
||
pt: "Procure por 1 carta de Energia básica no seu baralho e ligue-a a este Pokémon. Em seguida, embaralhe o seu baralho.",
|
||
de: "Durchsuche dein Deck nach 1 Basis-Energiekarte und lege sie an dieses Pokémon an. Mische anschließend dein Deck."
|
||
},
|
||
|
||
},
|
||
{
|
||
cost: [
|
||
"Colorless",
|
||
"Colorless",
|
||
"Colorless",
|
||
],
|
||
name: {
|
||
en: "Power Cyclone",
|
||
fr: "Cyclone d’Énergie",
|
||
es: "Ciclón Poderoso",
|
||
it: "Ciclone Potente",
|
||
pt: "Ciclone Poderoso",
|
||
de: "Kraftwirbel"
|
||
},
|
||
effect: {
|
||
en: "Move an Energy from this Pokémon to 1 of your Benched Pokémon.",
|
||
fr: "Déplacez une Énergie de ce Pokémon vers l’un de vos Pokémon de Banc.",
|
||
es: "Mueve 1 Energía de este Pokémon a 1 de tus Pokémon en Banca.",
|
||
it: "Sposta un’Energia da questo Pokémon a uno di quelli nella tua panchina.",
|
||
pt: "Mova 1 Energia deste Pokémon para 1 dos seus Pokémon no Banco.",
|
||
de: "Verschiebe 1 Energie von diesem Pokémon auf 1 Pokémon auf deiner Bank."
|
||
},
|
||
damage: 80,
|
||
|
||
},
|
||
],
|
||
weaknesses: [
|
||
{
|
||
type: "Fairy",
|
||
value: "×2"
|
||
},
|
||
],
|
||
|
||
retreat: 2,
|
||
|
||
|
||
|
||
}
|
||
|
||
export default card
|