mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-05-02 15:42:11 +00:00
105 lines
2.0 KiB
TypeScript
105 lines
2.0 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: "pl3-52",
|
|
localId: 52,
|
|
|
|
// Card informations
|
|
name: {
|
|
en: "Breloom",
|
|
fr: "Chapignon",
|
|
},
|
|
|
|
hp: 90,
|
|
|
|
type: [
|
|
Type.FIGHTING,
|
|
],
|
|
|
|
dexId: 286,
|
|
|
|
image: {
|
|
low: {
|
|
en: "https://assets.tcgdex.net/en/pl/pl3/52/low.png",
|
|
fr: "https://assets.tcgdex.net/fr/pl/pl3/52/low.png",
|
|
},
|
|
high: {
|
|
en: "https://assets.tcgdex.net/en/pl/pl3/52/high.png",
|
|
fr: "https://assets.tcgdex.net/fr/pl/pl3/52/high.png",
|
|
},
|
|
},
|
|
|
|
evolveFrom: {
|
|
en: "Shroomish",
|
|
fr: "Balignon",
|
|
},
|
|
|
|
tags: [
|
|
Tag.STAGE1,
|
|
],
|
|
|
|
illustrator: {
|
|
id: 25,
|
|
name: "Kyoko Umemoto"
|
|
},
|
|
|
|
|
|
|
|
attacks: [{
|
|
cost: [
|
|
Type.FIGHTING
|
|
],
|
|
name: {
|
|
en: "Hover Hit",
|
|
fr: "Coup de voltige",
|
|
},
|
|
text: {
|
|
en: "The Retreat Cost for the Defending Pokémon is 0 until the end of your next turn.",
|
|
fr: "Le Coût de retraite du Pokémon Défenseur est de 0 jusqu'à la fin de votre prochain tour.",
|
|
},
|
|
damage: 40
|
|
},{
|
|
cost: [
|
|
Type.COLORLESS,
|
|
Type.COLORLESS
|
|
],
|
|
name: {
|
|
en: "Crash Bomber",
|
|
fr: "Bombardier écrasant",
|
|
},
|
|
text: {
|
|
en: "If the Defending Pokémon has any Special Energy cards attached to it, this attack does 20 damage plus 40 more damage. Then, discard a Special Energy card attached to the Defending Pokémon.",
|
|
fr: "Si le Pokémon Défenseur possède des cartes Énergie spéciales, cette attaque inflige 20 dégâts plus 40 dégâts supplémentaires. Ensuite, défaussez une carte Énergie spéciale attachée au Pokémon Défenseur.",
|
|
},
|
|
damage: 20
|
|
}],
|
|
|
|
weaknesses: [{
|
|
type: Type.FIRE,
|
|
value: "+20"
|
|
}],
|
|
|
|
|
|
|
|
retreat: 1,
|
|
|
|
rarity: Rarity.Uncommon,
|
|
|
|
category: Category.POKEMON,
|
|
|
|
set: {
|
|
name: "Supreme Victors",
|
|
code: "pl3"
|
|
}
|
|
}
|
|
|
|
export default card
|
|
|