mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-25 12:22:14 +00:00
98 lines
2.2 KiB
TypeScript
98 lines
2.2 KiB
TypeScript
import { Card } from '../../../interfaces'
|
||
import Set from '../Primal Clash'
|
||
|
||
const card: Card = {
|
||
name: {
|
||
en: "Delcatty",
|
||
fr: "Delcatty",
|
||
es: "Delcatty",
|
||
it: "Delcatty",
|
||
pt: "Delcatty",
|
||
de: "Enekoro"
|
||
},
|
||
illustrator: "Atsuko Nishida",
|
||
rarity: "Rare",
|
||
category: "Pokemon",
|
||
|
||
set: Set,
|
||
dexId: [
|
||
301,
|
||
],
|
||
hp: 80,
|
||
types: [
|
||
"Colorless",
|
||
],
|
||
evolveFrom: {
|
||
en: "Skitty",
|
||
fr: "Skitty",
|
||
es: "Skitty",
|
||
it: "Skitty",
|
||
pt: "Skitty",
|
||
de: "Eneco"
|
||
},
|
||
stage: "Stage1",
|
||
|
||
|
||
attacks: [
|
||
{
|
||
cost: [
|
||
"Colorless",
|
||
],
|
||
name: {
|
||
en: "Replace",
|
||
fr: "Repositionnement",
|
||
es: "Traslado",
|
||
it: "Sostituzione",
|
||
pt: "Reorganizar",
|
||
de: "Austausch"
|
||
},
|
||
effect: {
|
||
en: "Move as many Energy attached to your Pokémon to your other Pokémon in any way you like.",
|
||
fr: "Déplacez autant d'Énergies attachées à vos Pokémon que vous voulez vers vos autres Pokémon, de la manière que vous voulez.",
|
||
es: "Mueve tantas Energías unidas a tus Pokémon a tus otros Pokémon de la manera que desees.",
|
||
it: "Distribuisci a piacimento tutte le Energie assegnate ai tuoi Pokémon.",
|
||
pt: "Mova tantas Energias ligadas aos seus Pokémon quanto desejar para seus outros Pokémon.",
|
||
de: "Verschiebe beliebig viele an deine Pokémon angelegten Energien nach Belieben auf deine anderen Pokémon."
|
||
},
|
||
|
||
},
|
||
{
|
||
cost: [
|
||
"Colorless",
|
||
"Colorless",
|
||
],
|
||
name: {
|
||
en: "Play Rough",
|
||
fr: "Câlinerie",
|
||
es: "Carantoña",
|
||
it: "Carineria",
|
||
pt: "Jogo Duro",
|
||
de: "Knuddler"
|
||
},
|
||
effect: {
|
||
en: "Flip a coin. If heads, this attack does 30 more damage.",
|
||
fr: "Lancez une pièce. Si c'est face, cette attaque inflige 30 dégâts supplémentaires.",
|
||
es: "Lanza 1 moneda. Si sale cara, este ataque hace 30 puntos de daño más.",
|
||
it: "Lancia una moneta. Se esce testa, questo attacco infligge 30 danni in più.",
|
||
pt: "Jogue uma moeda. Se sair cara, esse ataque causará 30 de danos adicionais.",
|
||
de: "Wirf 1 Münze. Bei \"Kopf\" fügt dieser Angriff 30 weitere Schadenspunkte zu."
|
||
},
|
||
damage: "30+",
|
||
|
||
},
|
||
],
|
||
weaknesses: [
|
||
{
|
||
type: "Fighting",
|
||
value: "×2"
|
||
},
|
||
],
|
||
|
||
retreat: 1,
|
||
|
||
|
||
|
||
}
|
||
|
||
export default card
|