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

68 lines
911 B
TypeScript

import { Card } from '../../../interfaces'
import Set from '../Fossil'
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: "Step In",
},
effect: {
en: "Once during your turn (before you attack) if Dragonite is on your Bench, you may switch it with your Active Pokémon.",
},
},
],
attacks: [
{
cost: [
"Colorless",
"Colorless",
"Colorless",
"Colorless",
],
name: {
en: "Slam",
},
effect: {
en: "Flip 2 coins. This attack does 40 damage times the number of heads.",
},
damage: 40,
},
],
resistances: [
{
type: "Fighting",
value: "-30"
},
],
}
export default card