mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-26 04:42:11 +00:00
101 lines
1.8 KiB
TypeScript
101 lines
1.8 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: "bw1-91",
|
||
localId: 91,
|
||
|
||
// Card informations
|
||
name: {
|
||
en: "Bouffalant",
|
||
fr: "Frison",
|
||
},
|
||
|
||
hp: 100,
|
||
|
||
type: [
|
||
Type.COLORLESS,
|
||
],
|
||
|
||
dexId: 626,
|
||
|
||
image: {
|
||
low: {
|
||
en: "https://assets.tcgdex.net/en/bw/bw1/91/low",
|
||
fr: "https://assets.tcgdex.net/fr/bw/bw1/91/low",
|
||
},
|
||
high: {
|
||
en: "https://assets.tcgdex.net/en/bw/bw1/91/high",
|
||
fr: "https://assets.tcgdex.net/fr/bw/bw1/91/high",
|
||
},
|
||
},
|
||
|
||
evolveFrom: {},
|
||
|
||
tags: [
|
||
Tag.BASIC,
|
||
],
|
||
|
||
illustrator: "Kouki Saitou",
|
||
|
||
|
||
|
||
attacks: [{
|
||
cost: [
|
||
Type.COLORLESS,
|
||
Type.COLORLESS
|
||
],
|
||
name: {
|
||
en: "Revenge",
|
||
fr: "Vendetta",
|
||
},
|
||
text: {
|
||
en: "If any of your Pokémon were Knocked Out by damage from an opponent's attack during his or her last turn, this attack does 70 more damage.",
|
||
fr: "Si l’un de vos Pokémon a été mis K.O. par les dégâts d'une attaque de votre adversaire lors de son dernier tour, cette attaque inflige 70 dégâts supplémentaires.",
|
||
},
|
||
damage: 20
|
||
},{
|
||
cost: [
|
||
Type.COLORLESS,
|
||
Type.COLORLESS,
|
||
Type.COLORLESS,
|
||
Type.COLORLESS
|
||
],
|
||
name: {
|
||
en: "Head Charge",
|
||
fr: "Peignée",
|
||
},
|
||
text: {
|
||
en: "Flip a coin. If tails, this Pokémon does 20 damage to itself.",
|
||
fr: "Lancez une pièce. Si c’est pile, ce Pokémon s’inflige 20 dégâts.",
|
||
},
|
||
damage: 80
|
||
}],
|
||
|
||
weaknesses: [{
|
||
type: Type.FIGHTING,
|
||
value: "×2"
|
||
}],
|
||
|
||
|
||
|
||
retreat: 2,
|
||
|
||
rarity: Rarity.RARE,
|
||
|
||
category: Category.POKEMON,
|
||
|
||
set: {
|
||
name: "Black & White",
|
||
code: "bw1"
|
||
}
|
||
}
|
||
|
||
export default card
|