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

62 lines
858 B
TypeScript

import { Card } from '../../../interfaces'
import Set from '../Expedition Base Set'
const card: Card = {
name: {
en: "Dragonite",
},
illustrator: "Kagemaru Himeno",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
149,
],
hp: 100,
types: [
"Colorless",
],
evolveFrom: {
en: "Dragonair",
},
stage: "Stage2",
abilities: [
{
type: "Poke-POWER",
name: {
en: "Tailwind",
},
effect: {
en: "Once during your turn (before you attack), if Dragonite is on your Bench, you may reduce your Active Pokémon's Retreat cost to 0.",
},
},
],
attacks: [
{
cost: [
"Water",
"Lightning",
"Fighting",
],
name: {
en: "Dragon Tail",
},
effect: {
en: "Flip 2 coins. This attack does 40 damage times the number of heads.",
},
damage: 40,
},
],
}
export default card