1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-27 05:12:11 +00:00
Florian Bouillon 0d2a757cae
base DB
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2020-02-03 15:18:40 +01:00

78 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.png",
},
high: {
en: "https://assets.tcgdex.net/en/ecard/ecard3/47/high.png",
},
},
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