1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-24 20:02:15 +00:00
Florian Bouillon 6ca1ae94ed
Updated Cards to use new Rarities
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2020-05-04 13:58:48 +02:00

74 lines
1.2 KiB
TypeScript

import Card from '@tcgdex/sdk/interfaces/Card'
import Type from '@tcgdex/sdk/interfaces/Type'
import Tag from '@tcgdex/sdk/interfaces/Tag'
import Rarity from '@tcgdex/sdk/interfaces/Rarity'
import AbilityType from '@tcgdex/sdk/interfaces/AbilityType'
import Category from '@tcgdex/sdk/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: "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