1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-23 03:12:10 +00:00
Benjamin Rousseliere 91dc66a494
Add missing pokemon card dex ids (#494)
Co-authored-by: Benjamin Rousseliere <benjamin.r@galadrim.fr>
2024-06-18 00:34:39 +02:00

68 lines
1.3 KiB
TypeScript

import { Card } from "../../../interfaces"
import Set from "../Crown Zenith"
const card: Card = {
dexId: [370],
set: Set,
name: {
en: "Luvdisc",
fr: "Lovdisc",
es: "Luvdisc",
it: "Luvdisc",
pt: "Luvdisc",
de: "Liebiskus"
},
rarity: "Common",
category: "Pokemon",
hp: 70,
types: ["Water"],
stage: "Basic",
attacks: [{
cost: ["Water"],
name: {
en: "Emotional Draw",
fr: "Pioche Émouvante",
es: "Robo Emocional",
it: "Pesca Sentimentale",
pt: "Compra Emotiva",
de: "Emotionaler Zug"
},
effect: {
en: "Shuffle your hand into your deck. Then, draw 5 cards.",
fr: "Mélangez votre main avec votre deck. Ensuite, piochez 5 cartes.",
es: "Pon las cartas de tu mano en tu baraja y barájalas todas. Después, roba 5 cartas.",
it: "Rimischia le carte che hai in mano nel tuo mazzo. Poi pesca cinque carte.",
pt: "Embaralhe a sua mão no seu baralho. Em seguida, compre 5 cartas.",
de: "Mische deine Handkarten in dein Deck. Ziehe anschließend 5 Karten."
}
}, {
cost: ["Colorless"],
name: {
en: "Tackle",
fr: "Charge",
es: "Placaje",
it: "Azione",
pt: "Investida",
de: "Tackle"
},
damage: 20
}],
retreat: 1,
regulationMark: "F",
variants: {
normal: true,
reverse: true,
holo: false,
firstEdition: false
}
}
export default card