mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 19:32:11 +00:00
57 lines
786 B
TypeScript
57 lines
786 B
TypeScript
import { Card } from '../../../interfaces'
|
|
import Set from '../Expedition Base Set'
|
|
|
|
const card: Card = {
|
|
name: {
|
|
en: "Dratini",
|
|
fr: "Minidraco",
|
|
de: "Dratini"
|
|
},
|
|
illustrator: "Kagemaru Himeno",
|
|
rarity: "Common",
|
|
category: "Pokemon",
|
|
|
|
set: Set,
|
|
dexId: [
|
|
147,
|
|
],
|
|
hp: 40,
|
|
types: [
|
|
"Colorless",
|
|
],
|
|
|
|
stage: "Basic",
|
|
|
|
|
|
attacks: [
|
|
{
|
|
cost: [
|
|
"Lightning",
|
|
"Water",
|
|
],
|
|
|
|
name: {
|
|
en: "Dragon Smash",
|
|
fr: "Coup du dragon",
|
|
de: "Drachenschmetterschlag"
|
|
},
|
|
|
|
effect: {
|
|
en: "Flip a coin. If tails, this attack does nothing.",
|
|
fr: "Lancez une pièce. Si c'est pile, cette attaque ne fait rien.",
|
|
de: "Wirf eine Münze. Bei \"Zahl\" hat dieser Angriff keine Auswirkungen."
|
|
},
|
|
|
|
damage: 40
|
|
},
|
|
],
|
|
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
export default card
|