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

62 lines
955 B
TypeScript

import { Card } from '../../../interfaces'
import Set from '../Team Rocket'
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: [
"Colorless",
"Colorless",
],
name: {
en: "Wrap",
fr: "Ligotage",
de: "Wrap"
},
effect: {
en: "Flip a coin. If heads, the Defending Pokémon is now Paralyzed.",
fr: "Lancez une pièce. Si c'est face, le Pokémon Défenseur est maintenant Paralysé.",
de: "Flip a coin. if heads, the Defending Pokémon is now Paralyzed."
},
damage: 10,
},
],
resistances: [
{
type: "Psychic",
value: "-30"
},
],
description: {
fr: "La capture du premier Minidraco a inspiré la quêtre d'autres Pokémon légendaires."
}
}
export default card