1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-23 03:12: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

85 lines
1.3 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 '../Legend Maker'
const card: Card = {
name: {
en: "Aerodactyl",
},
illustrator: "Hajime Kusajima",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
142,
],
hp: 70,
types: [
"Colorless",
],
evolveFrom: {
en: "Mysterious Fossil",
},
stage: "Stage1",
abilities: [
{
type: "Poke-BODY",
name: {
en: "Reactive Protection",
},
effect: {
en: "Any damage done to Aerodactyl by attacks from your opponent's Pokémon is reduced by 10 for each React Energy card attached to Aerodactyl (after applying Weakness and Resistance).",
},
},
],
attacks: [
{
cost: [
"Colorless",
],
name: {
en: "Power Blow",
},
effect: {
en: "Does 10 damage plus 10 more damage for each Energy attached to Aerodactyl.",
},
damage: 10,
},
{
cost: [
"Colorless",
"Colorless",
"Colorless",
],
name: {
en: "Speed Stroke",
},
effect: {
en: "During your opponent's next turn, prevent all effects, including damage, done to Aerodactyl by attacks from your opponent's Pokémon-ex.",
},
damage: 40,
},
],
weaknesses: [
{
type: "Lightning",
value: "×2"
},
],
resistances: [
{
type: "Fighting",
value: "-30"
},
],
}
export default card