mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 19:32:11 +00:00
57 lines
680 B
TypeScript
57 lines
680 B
TypeScript
import { Card } from '../../../interfaces'
|
|
import Set from '../Base Set'
|
|
|
|
const card: Card = {
|
|
name: {
|
|
en: "Dratini",
|
|
fr: "Minidraco",
|
|
de: "Dratini"
|
|
},
|
|
|
|
illustrator: "Ken Sugimori",
|
|
rarity: "Uncommon",
|
|
category: "Pokemon",
|
|
set: Set,
|
|
|
|
dexId: [
|
|
147,
|
|
],
|
|
|
|
hp: 40,
|
|
|
|
types: [
|
|
"Colorless",
|
|
],
|
|
|
|
stage: "Basic",
|
|
|
|
attacks: [
|
|
{
|
|
cost: [
|
|
"Colorless",
|
|
],
|
|
name: {
|
|
en: "Pound",
|
|
fr: "Écras' Face",
|
|
de: "Pfund"
|
|
},
|
|
|
|
damage: 10,
|
|
|
|
},
|
|
],
|
|
|
|
resistances: [
|
|
{
|
|
type: "Psychic",
|
|
value: "-30"
|
|
},
|
|
],
|
|
|
|
description: {
|
|
fr: "Longtemps considéré comme légendaire, une colonie fut découverte dans les océans."
|
|
}
|
|
}
|
|
|
|
export default card
|