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

82 lines
1.1 KiB
TypeScript
Raw Permalink 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 '../Delta Species'
const card: Card = {
name: {
en: "Dratini δ",
fr: "Minidraco δ ESPÈCES DELTA",
de: "Dratini"
},
illustrator: "Hajime Kusajima",
rarity: "Common",
category: "Pokemon",
set: Set,
dexId: [
147,
],
hp: 50,
types: [
"Lightning",
],
stage: "Basic",
attacks: [
{
cost: [
"Colorless",
],
name: {
en: "Hook",
fr: "Crochet",
de: "Hook"
},
damage: 10,
},
{
cost: [
"Lightning",
"Colorless",
],
name: {
en: "Thunder Jolt",
fr: "Secousse tonnerre",
de: "Thunder Jolt"
},
effect: {
en: "Flip a coin. If tails, Dratini does 10 damage to itself.",
fr: "Lancez une pièce. Si c'est pile, Minidraco s'inflige 10 dégâts.",
de: "Flip a coin. If tails, Dratini does 10 damage to itself."
},
damage: 30,
},
],
weaknesses: [
{
type: "Colorless",
value: "×2"
},
],
resistances: [
{
type: "Grass",
value: "-30"
},
{
type: "Fighting",
value: "-30"
},
],
}
export default card