mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-22 03:49:19 +00:00
Initial Database
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
This commit is contained in:
101
cards/bw/bw6/91.ts
Normal file
101
cards/bw/bw6/91.ts
Normal file
@ -0,0 +1,101 @@
|
||||
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-91",
|
||||
localId: 91,
|
||||
|
||||
// Card informations
|
||||
name: {
|
||||
en: "Garchomp",
|
||||
fr: "Carchacrok",
|
||||
},
|
||||
|
||||
hp: 140,
|
||||
|
||||
type: [
|
||||
Type.DRAGON,
|
||||
],
|
||||
|
||||
dexId: 445,
|
||||
|
||||
image: {
|
||||
low: {
|
||||
en: "https://assets.tcgdex.net/en/bw/bw6/91/low.png",
|
||||
fr: "https://assets.tcgdex.net/fr/bw/bw6/91/low.png",
|
||||
},
|
||||
high: {
|
||||
en: "https://assets.tcgdex.net/en/bw/bw6/91/high.png",
|
||||
fr: "https://assets.tcgdex.net/fr/bw/bw6/91/high.png",
|
||||
},
|
||||
},
|
||||
|
||||
evolveFrom: {
|
||||
en: "Gabite",
|
||||
fr: "Carmache",
|
||||
},
|
||||
|
||||
tags: [
|
||||
Tag.STAGE2,
|
||||
],
|
||||
|
||||
illustrator: {
|
||||
id: 15,
|
||||
name: "Naoki Saito"
|
||||
},
|
||||
|
||||
|
||||
|
||||
attacks: [{
|
||||
cost: [
|
||||
Type.COLORLESS
|
||||
],
|
||||
name: {
|
||||
en: "Jet Headbutt",
|
||||
fr: "Bélier Volant",
|
||||
},
|
||||
damage: 40
|
||||
},{
|
||||
cost: [
|
||||
Type.WATER,
|
||||
Type.FIGHTING,
|
||||
Type.COLORLESS
|
||||
],
|
||||
name: {
|
||||
en: "Sand Tomb",
|
||||
fr: "Tourbi-Sable",
|
||||
},
|
||||
text: {
|
||||
en: "The Defending Pokémon can't retreat during your opponent's next turn.",
|
||||
fr: "Le Pokémon Défenseur ne peut pas battre en retraite pendant le prochain tour de votre adversaire.",
|
||||
},
|
||||
damage: 80
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: Type.DRAGON,
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
rarity: Rarity.Rare,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set: {
|
||||
name: "Dragons Exalted",
|
||||
code: "bw6"
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
Reference in New Issue
Block a user