1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-23 03:12:10 +00:00

67 lines
783 B
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import { Card } from '../../../interfaces'
import Set from '../Dragon Vault'
const card: Card = {
name: {
en: "Dratini",
fr: "Minidraco",
},
illustrator: "Naoki Saito",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
147,
],
hp: 40,
types: [
"Dragon",
],
stage: "Basic",
attacks: [
{
cost: [
"Grass",
],
name: {
en: "Hypnotic Gaze",
fr: "Regard Hypnotique",
},
effect: {
en: "The Defending Pokémon is now Asleep.",
fr: "Le Pokémon Défenseur est maintenant Endormi.",
},
},
{
cost: [
"Lightning",
],
name: {
en: "Tail Whap",
fr: "Queue Battoir",
},
damage: 10,
},
],
weaknesses: [
{
type: "Dragon",
value: "×2"
},
],
retreat: 1,
}
export default card