mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-24 11:52:16 +00:00
114 lines
2.2 KiB
TypeScript
114 lines
2.2 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: "sm4-115",
|
||
localId: 115,
|
||
|
||
// Card informations
|
||
name: {
|
||
en: "Buzzwole-GX",
|
||
fr: "Mouscoto-GX",
|
||
},
|
||
|
||
hp: 190,
|
||
|
||
type: [
|
||
Type.FIGHTING,
|
||
],
|
||
|
||
dexId: 794,
|
||
|
||
image: {
|
||
low: {
|
||
en: "https://assets.tcgdex.net/en/sm/sm4/115/low",
|
||
fr: "https://assets.tcgdex.net/fr/sm/sm4/115/low",
|
||
},
|
||
high: {
|
||
en: "https://assets.tcgdex.net/en/sm/sm4/115/high",
|
||
fr: "https://assets.tcgdex.net/fr/sm/sm4/115/high",
|
||
},
|
||
},
|
||
|
||
evolveFrom: {},
|
||
|
||
tags: [
|
||
Tag.GX,
|
||
],
|
||
|
||
illustrator: "5ban Graphics",
|
||
|
||
|
||
|
||
attacks: [{
|
||
cost: [
|
||
Type.FIGHTING
|
||
],
|
||
name: {
|
||
en: "Jet Punch",
|
||
fr: "Coup Rapide",
|
||
},
|
||
text: {
|
||
en: "This attack does 30 damage to 1 of your opponent's Benched Pokémon. (Don't apply Weakness and Resistance for Benched Pokémon.)",
|
||
fr: "Cette attaque inflige 30 dégâts à l’un des Pokémon de Banc de votre adversaire. (N’appliquez ni la Faiblesse ni la Résistance aux Pokémon de Banc.)",
|
||
},
|
||
damage: 30
|
||
},{
|
||
cost: [
|
||
Type.FIGHTING,
|
||
Type.FIGHTING,
|
||
Type.FIGHTING
|
||
],
|
||
name: {
|
||
en: "Knuckle Impact",
|
||
fr: "Coup d’Articulations",
|
||
},
|
||
text: {
|
||
en: "This Pokémon can't attack during your next turn.",
|
||
fr: "Ce Pokémon ne peut pas attaquer pendant votre prochain tour.",
|
||
},
|
||
damage: 160
|
||
},{
|
||
cost: [
|
||
Type.FIGHTING,
|
||
Type.FIGHTING,
|
||
Type.FIGHTING
|
||
],
|
||
name: {
|
||
en: "Absorption-GX",
|
||
fr: "Expansion-GX",
|
||
},
|
||
text: {
|
||
en: "This attack does 40 damage for each of your remaining Prize cards. (You can't use more than 1 GX attack in a game.)",
|
||
fr: "Cette attaque inflige 40 dégâts pour chacune des cartes Récompense qu'il vous reste. (Vous ne pouvez utiliser qu’une attaque GX par partie.)",
|
||
},
|
||
damage: 40
|
||
}],
|
||
|
||
weaknesses: [{
|
||
type: Type.PSYCHIC,
|
||
value: "×2"
|
||
}],
|
||
|
||
|
||
|
||
retreat: 2,
|
||
|
||
rarity: Rarity.RARE,
|
||
|
||
category: Category.POKEMON,
|
||
|
||
set: {
|
||
name: "Crimson Invasion",
|
||
code: "sm4"
|
||
}
|
||
}
|
||
|
||
export default card
|