1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-14 08:39:17 +00:00
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
This commit is contained in:
2020-02-03 15:18:40 +01:00
commit 0d2a757cae
12077 changed files with 1123810 additions and 0 deletions

97
cards/pl/pl4/13.ts Normal file
View File

@ -0,0 +1,97 @@
import Card from '../../../interfaces/Card'
import Type from '../../../interfaces/Type'
import Tag from '../../../interfaces/Tag'
import Rarity from '../../../interfaces/Rarity'
import AbilityType from '../../../interfaces/AbilityType'
import Category from '../../../interfaces/Category'
const card: Card = {
// ids
id: "pl4-13",
localId: 13,
// Card informations
name: {
en: "Aerodactyl",
},
hp: 80,
type: [
Type.FIGHTING,
],
dexId: 142,
image: {
low: {
en: "https://assets.tcgdex.net/en/pl/pl4/13/low.png",
},
high: {
en: "https://assets.tcgdex.net/en/pl/pl4/13/high.png",
},
},
evolveFrom: {
en: "Old Amber",
},
tags: [
Tag.STAGE1,
],
illustrator: {
id: 8,
name: "Masakazu Fukuda"
},
abilities: [{
id: 1084,
type: AbilityType.POKEPOWER,
name: {
en: "Unearth",
},
text: {
en: "Once during your turn (before your attack), you may search your deck for Helix Fossil, Dome Fossil, or Old Amber, show it to your opponent, and put it into your hand. Shuffle your deck afterward. This power can't be used if Aerodactyl is affected by a Special Condition.",
}
}],
attacks: [{
cost: [
Type.COLORLESS,
Type.COLORLESS
],
name: {
en: "Hyper Beam",
},
text: {
en: "Flip a coin. If heads, discard an Energy card attached to the Defending Pokémon.",
},
damage: 30
}],
weaknesses: [{
type: Type.LIGHTNING,
value: "+20"
}],
resistances: [{
type: Type.FIGHTING,
value: "-20"
}],
rarity: Rarity.Rare,
category: Category.POKEMON,
set: {
name: "Arceus",
code: "pl4"
}
}
export default card