1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-13 12:26:15 +00:00
Florian Bouillon 66d8e43a43
Removed Extension on pictures
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2020-02-22 00:11:26 +01:00

77 lines
1.2 KiB
TypeScript

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: "ecard3-47",
localId: 47,
// Card informations
name: {
en: "Buried Fossil",
},
hp: 30,
type: [
Type.COLORLESS,
],
image: {
low: {
en: "https://assets.tcgdex.net/en/ecard/ecard3/47/low",
},
high: {
en: "https://assets.tcgdex.net/en/ecard/ecard3/47/high",
},
},
evolveFrom: {},
tags: [
Tag.BASIC,
],
illustrator: {
id: 32,
name: "Atsuko Nishida"
},
abilities: [{
id: 469,
type: AbilityType.POKEPOWER,
name: {
en: "Reconstruction",
},
text: {
en: "Once during your turn (before your attack), if you have a basic Energy card in your hand, you may search your deck for an Omanyte or Kabuto card, show it to your opponent, and put it into your hand. Then put a basic Energy card from your hand into your deck. Shuffle your deck afterward.",
}
}],
rarity: Rarity.Common,
category: Category.POKEMON,
set: {
name: "Skyridge",
code: "ecard3"
}
}
export default card