mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-05-02 15:42:11 +00:00
62 lines
728 B
TypeScript
62 lines
728 B
TypeScript
import { Card } from '../../../interfaces'
|
||
import Set from '../Dragon Majesty'
|
||
|
||
const card: Card = {
|
||
name: {
|
||
en: "Dratini",
|
||
fr: "Minidraco",
|
||
es: "Dratini",
|
||
it: "Dratini",
|
||
pt: "Dratini",
|
||
de: "Dratini"
|
||
},
|
||
illustrator: "Anesaki Dynamic",
|
||
rarity: "Common",
|
||
category: "Pokemon",
|
||
|
||
set: Set,
|
||
dexId: [
|
||
147,
|
||
],
|
||
hp: 70,
|
||
types: [
|
||
"Dragon",
|
||
],
|
||
|
||
stage: "Basic",
|
||
|
||
|
||
attacks: [
|
||
{
|
||
cost: [
|
||
"Water",
|
||
"Colorless",
|
||
],
|
||
name: {
|
||
en: "Tail Whap",
|
||
fr: "Queue Battoir",
|
||
es: "Coletón",
|
||
it: "Codabotta",
|
||
pt: "Surra de Cauda",
|
||
de: "Schweifvertrimmer"
|
||
},
|
||
|
||
damage: 30,
|
||
|
||
},
|
||
],
|
||
weaknesses: [
|
||
{
|
||
type: "Fairy",
|
||
value: "×2"
|
||
},
|
||
],
|
||
|
||
retreat: 2,
|
||
|
||
|
||
|
||
}
|
||
|
||
export default card
|