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

79 lines
1.2 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 '../Dragon Vault'
const card: Card = {
name: {
en: "Dragonite",
fr: "Dracolosse",
},
illustrator: "Mitsuhiro Arita",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
149,
],
hp: 150,
types: [
"Dragon",
],
evolveFrom: {
en: "Dragonair",
fr: "Draco",
},
stage: "Stage2",
attacks: [
{
cost: [
"Lightning",
"Colorless",
"Colorless",
],
name: {
en: "Hyper Beam",
fr: "Ultralaser",
},
effect: {
en: "Flip a coin. If heads, discard an Energy attached to the Defending Pokémon.",
fr: "Lancez une pièce. Si c'est face, défaussez une Énergie attachée au Pokémon Défenseur.",
},
damage: 50,
},
{
cost: [
"Grass",
"Colorless",
"Colorless",
"Colorless",
],
name: {
en: "Hurricane Tail",
fr: "Bourrasqueue",
},
effect: {
en: "Flip 4 coins. This attack does 60 damage times the number of heads.",
fr: "Lancez 4 pièces. Cette attaque inflige 60 dégâts multipliés par le nombre de côtés face.",
},
damage: 60,
},
],
weaknesses: [
{
type: "Dragon",
value: "×2"
},
],
retreat: 3,
}
export default card