mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-05-02 15:42:11 +00:00
105 lines
1.9 KiB
TypeScript
105 lines
1.9 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: "bw7-74",
|
||
localId: 74,
|
||
|
||
// Card informations
|
||
name: {
|
||
en: "Scolipede",
|
||
fr: "Brutapode",
|
||
},
|
||
|
||
hp: 150,
|
||
|
||
type: [
|
||
Type.PSYCHIC,
|
||
],
|
||
|
||
dexId: 545,
|
||
|
||
image: {
|
||
low: {
|
||
en: "https://assets.tcgdex.net/en/bw/bw7/74/low.png",
|
||
fr: "https://assets.tcgdex.net/fr/bw/bw7/74/low.png",
|
||
},
|
||
high: {
|
||
en: "https://assets.tcgdex.net/en/bw/bw7/74/high.png",
|
||
fr: "https://assets.tcgdex.net/fr/bw/bw7/74/high.png",
|
||
},
|
||
},
|
||
|
||
evolveFrom: {
|
||
en: "Whirlipede",
|
||
fr: "Scobolide",
|
||
},
|
||
|
||
tags: [
|
||
Tag.STAGE2,
|
||
],
|
||
|
||
illustrator: {
|
||
id: 4,
|
||
name: "5ban Graphics"
|
||
},
|
||
|
||
abilities: [{
|
||
id: 280,
|
||
type: AbilityType.TALENT,
|
||
name: {
|
||
en: "Poison Point",
|
||
fr: "Point Poison",
|
||
},
|
||
text: {
|
||
en: "If this Pokémon is your Active Pokémon and is damaged by an opponent's attack (even if this Pokémon is Knocked Out), the Attacking Pokémon is now Poisoned.",
|
||
fr: "Si ce Pokémon est votre Pokémon Actif et qu'il subit les dégâts d'une attaque de votre adversaire (même si ce Pokémon est mis K.O.), le Pokémon Attaquant est maintenant Empoisonné.",
|
||
}
|
||
}],
|
||
|
||
attacks: [{
|
||
cost: [
|
||
Type.PSYCHIC,
|
||
Type.PSYCHIC,
|
||
Type.COLORLESS,
|
||
Type.COLORLESS
|
||
],
|
||
name: {
|
||
en: "Venoshock",
|
||
fr: "Choc Venin",
|
||
},
|
||
text: {
|
||
en: "If the Defending Pokémon is Poisoned, this attack does 40 more damage.",
|
||
fr: "Si le Pokémon Défenseur est Empoisonné, cette attaque inflige 40 dégâts supplémentaires.",
|
||
},
|
||
damage: 80
|
||
}],
|
||
|
||
weaknesses: [{
|
||
type: Type.PSYCHIC,
|
||
value: "×2"
|
||
}],
|
||
|
||
|
||
|
||
retreat: 4,
|
||
|
||
rarity: Rarity.RareHolo,
|
||
|
||
category: Category.POKEMON,
|
||
|
||
set: {
|
||
name: "Boundaries Crossed",
|
||
code: "bw7"
|
||
}
|
||
}
|
||
|
||
export default card
|
||
|