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

65 lines
987 B
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 '../Darkness Ablaze'
const card: Card = {
name: {
en: "Flygon",
},
illustrator: "hatachu",
rarity: "Rare",
category: "Pokemon",
set: Set,
hp: 150,
types: [
"Fighting",
],
evolveFrom: {
en: "Vibrava",
},
abilities: [
{
type: "Ability",
name: {
en: "Labyrinth of Sand",
},
effect: {
en: "As long as this Pokémon is in the Active Spot, your opponents Active Pokémon cant retreat.",
},
},
],
attacks: [
{
cost: [
"Fighting",
"Colorless",
"Colorless",
],
name: {
en: "Desert Geyser",
},
effect: {
en: "If your opponent has a Stadium in play, discard it. If you discarded a Stadium in this way, during your opponents next turn, prevent all damage from and effects of attacks done to this Pokémon.",
},
damage: 130,
},
],
weaknesses: [
{
type: "Grass",
value: "×2"
},
],
retreat: 1,
}
export default card