1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-23 08:39:54 +00:00

79 lines
1.1 KiB
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 '../Plasma Freeze'
const card: Card = {
name: {
en: "Dragonite",
fr: "Dracolosse",
},
illustrator: "Akira Komayama",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
149,
],
hp: 150,
types: [
"Dragon",
],
evolveFrom: {
en: "Dragonair",
fr: "Draco",
},
stage: "Stage2",
attacks: [
{
cost: [
"Colorless",
"Colorless",
"Colorless",
],
name: {
en: "Deafen",
fr: "Rendre Sourd",
},
effect: {
en: "Your opponent can't play any Item cards from his or her hand during his or her next turn.",
fr: "Votre adversaire ne peut pas jouer de cartes Objet de sa main pendant son prochain tour.",
},
damage: 60,
},
{
cost: [
"Grass",
"Lightning",
"Colorless",
"Colorless",
],
name: {
en: "Healwing",
fr: "Aile Soin",
},
effect: {
en: "Heal 30 damage from this Pokémon.",
fr: "Soignez 30 dégâts à ce Pokémon.",
},
damage: 90,
},
],
weaknesses: [
{
type: "Dragon",
value: "×2"
},
],
retreat: 3,
}
export default card