1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-18 02:19:17 +00:00

Initial Database

Signed-off-by: Avior <florian.bouillon@delta-wings.net>
This commit is contained in:
2020-02-19 16:19:09 +01:00
commit be94e712b8
12302 changed files with 1142705 additions and 0 deletions

98
cards/bw/bw6/89.ts Normal file
View File

@ -0,0 +1,98 @@
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: "bw6-89",
localId: 89,
// Card informations
name: {
en: "Gabite",
fr: "Carmache",
},
hp: 80,
type: [
Type.DRAGON,
],
dexId: 444,
image: {
low: {
en: "https://assets.tcgdex.net/en/bw/bw6/89/low.png",
fr: "https://assets.tcgdex.net/fr/bw/bw6/89/low.png",
},
high: {
en: "https://assets.tcgdex.net/en/bw/bw6/89/high.png",
fr: "https://assets.tcgdex.net/fr/bw/bw6/89/high.png",
},
},
evolveFrom: {
en: "Gible",
fr: "Griknot",
},
tags: [
Tag.STAGE1,
],
illustrator: {
id: 0,
name: "Kagemaru Himeno"
},
abilities: [{
id: 799,
type: AbilityType.TALENT,
name: {
en: "Dragon Call",
fr: "Appel du Dragon",
},
text: {
en: "Once during your turn (before your attack), you may search your deck for a Dragon Pokémon, reveal it, and put it into your hand. Shuffle your deck afterward.",
fr: "Une seule fois pendant votre tour (avant votre attaque), vous pouvez chercher un Pokémon Dragon dans votre deck, le montrer et l'ajouter à votre main. Mélangez ensuite votre deck.",
}
}],
attacks: [{
cost: [
Type.WATER,
Type.FIGHTING
],
name: {
en: "Dragonslice",
fr: "Draco-Tranche",
},
damage: 20
}],
weaknesses: [{
type: Type.DRAGON,
value: "×2"
}],
retreat: 1,
rarity: Rarity.Uncommon,
category: Category.POKEMON,
set: {
name: "Dragons Exalted",
code: "bw6"
}
}
export default card