1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-18 02:19:17 +00:00
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
This commit is contained in:
2020-02-03 15:18:40 +01:00
commit 0d2a757cae
12077 changed files with 1123810 additions and 0 deletions

99
cards/bw/bw7/73.ts Normal file
View File

@ -0,0 +1,99 @@
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-73",
localId: 73,
// Card informations
name: {
en: "Whirlipede",
fr: "Scobolide",
},
hp: 100,
type: [
Type.PSYCHIC,
],
dexId: 544,
image: {
low: {
en: "https://assets.tcgdex.net/en/bw/bw7/73/low.png",
fr: "https://assets.tcgdex.net/fr/bw/bw7/73/low.png",
},
high: {
en: "https://assets.tcgdex.net/en/bw/bw7/73/high.png",
fr: "https://assets.tcgdex.net/fr/bw/bw7/73/high.png",
},
},
evolveFrom: {
en: "Venipede",
fr: "Venipatte",
},
tags: [
Tag.STAGE1,
],
illustrator: {
id: 28,
name: "match"
},
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.COLORLESS,
Type.COLORLESS
],
name: {
en: "Spinning Attack",
fr: "Attaque Tournante",
},
damage: 50
}],
weaknesses: [{
type: Type.PSYCHIC,
value: "×2"
}],
retreat: 3,
rarity: Rarity.Uncommon,
category: Category.POKEMON,
set: {
name: "Boundaries Crossed",
code: "bw7"
}
}
export default card