1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-25 12:22:14 +00:00
Florian Bouillon ef2d099e6e
Fixed ! (#22)
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2021-05-26 14:51:02 +02:00

66 lines
992 B
TypeScript

import { Card } from '../../../interfaces'
import Set from '../Wizards Black Star Promos'
const card: Card = {
name: {
en: "Dragonite",
},
illustrator: "Toshinao Aoki",
rarity: "Common",
category: "Pokemon",
set: Set,
dexId: [
149,
],
hp: 90,
types: [
"Colorless",
],
evolveFrom: {
en: "Dragonair",
},
stage: "Stage2",
abilities: [
{
type: "Poke-POWER",
name: {
en: "Special Delivery",
},
effect: {
en: "Once during your turn (before your attack), you may draw a card. If you do, choose a card from your hand and put it on top of your deck. This power can't be used if Dragonite is Asleep, Confused, or Paralyzed.",
},
},
],
attacks: [
{
cost: [
"Colorless",
"Colorless",
"Colorless",
],
name: {
en: "Supersonic Flight",
},
effect: {
en: "Flip a coin. If tails, this attack does nothing.",
},
},
],
resistances: [
{
type: "Fighting",
value: "-30"
},
],
}
export default card