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

95 lines
1.4 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: "dp2-48",
localId: 48,
// Card informations
name: {
en: "Gabite",
},
hp: 80,
type: [
Type.COLORLESS,
],
dexId: 444,
image: {
low: {
en: "https://assets.tcgdex.net/en/dp/dp2/48/low.png",
},
high: {
en: "https://assets.tcgdex.net/en/dp/dp2/48/high.png",
},
},
evolveFrom: {
en: "Gible",
},
tags: [
Tag.STAGE1,
],
illustrator: {
id: 5,
name: "Ken Sugimori"
},
attacks: [{
cost: [
Type.COLORLESS
],
name: {
en: "Gather Up",
},
text: {
en: "Search your discard pile for up to 2 Energy cards, show them to your opponent, and put them into your hand.",
},
},{
cost: [
Type.COLORLESS,
Type.COLORLESS
],
name: {
en: "Marvelous Shine",
},
text: {
en: "Flip a coin. If heads, put 4 damage counters on 1 of your opponent's Pokémon. If tails, remove 4 damage counters from 1 of your Pokémon.",
},
}],
weaknesses: [{
type: Type.COLORLESS,
value: "+20"
}],
rarity: Rarity.Uncommon,
category: Category.POKEMON,
set: {
name: "Mysterious Treasures",
code: "dp2"
}
}
export default card