mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 03:12:10 +00:00
104 lines
1.7 KiB
TypeScript
104 lines
1.7 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: "bw3-12",
|
||
localId: 12,
|
||
|
||
// Card informations
|
||
name: {
|
||
en: "Accelgor",
|
||
fr: "Limaspeed",
|
||
},
|
||
|
||
hp: 90,
|
||
|
||
type: [
|
||
Type.GRASS,
|
||
],
|
||
|
||
dexId: 617,
|
||
|
||
image: {
|
||
low: {
|
||
en: "https://assets.tcgdex.net/en/bw/bw3/12/low.png",
|
||
fr: "https://assets.tcgdex.net/fr/bw/bw3/12/low.png",
|
||
},
|
||
high: {
|
||
en: "https://assets.tcgdex.net/en/bw/bw3/12/high.png",
|
||
fr: "https://assets.tcgdex.net/fr/bw/bw3/12/high.png",
|
||
},
|
||
},
|
||
|
||
evolveFrom: {
|
||
en: "Shelmet",
|
||
fr: "Escargaume",
|
||
},
|
||
|
||
tags: [
|
||
Tag.STAGE1,
|
||
],
|
||
|
||
illustrator: {
|
||
id: 0,
|
||
name: "Kagemaru Himeno"
|
||
},
|
||
|
||
|
||
|
||
attacks: [{
|
||
cost: [
|
||
Type.COLORLESS
|
||
],
|
||
name: {
|
||
en: "Acid Spray",
|
||
fr: "Bombe Acide",
|
||
},
|
||
text: {
|
||
en: "Flip a coin. If heads, discard an Energy attached to the Defending Pokémon.",
|
||
fr: "Lancez une pièce. Si c'est face, défaussez une Énergie attachée au Pokémon Défenseur.",
|
||
},
|
||
damage: 20
|
||
},{
|
||
cost: [
|
||
Type.GRASS
|
||
],
|
||
name: {
|
||
en: "Slashing Strike",
|
||
fr: "Coup Déchirant",
|
||
},
|
||
text: {
|
||
en: "This Pokémon can't use Slashing Strike during your next turn.",
|
||
fr: "Ce Pokémon ne peut pas utiliser Coup Déchirant pendant votre prochain tour.",
|
||
},
|
||
damage: 60
|
||
}],
|
||
|
||
weaknesses: [{
|
||
type: Type.FIRE,
|
||
value: "×2"
|
||
}],
|
||
|
||
|
||
|
||
|
||
|
||
rarity: Rarity.Rare,
|
||
|
||
category: Category.POKEMON,
|
||
|
||
set: {
|
||
name: "Noble Victories",
|
||
code: "bw3"
|
||
}
|
||
}
|
||
|
||
export default card
|
||
|