1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-23 04:19:18 +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

102
cards/bw/bw8/39.ts Normal file
View File

@ -0,0 +1,102 @@
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: "bw8-39",
localId: 39,
// Card informations
name: {
en: "Jellicent",
fr: "Moyade",
},
hp: 100,
type: [
Type.WATER,
],
dexId: 593,
image: {
low: {
en: "https://assets.tcgdex.net/en/bw/bw8/39/low.png",
fr: "https://assets.tcgdex.net/fr/bw/bw8/39/low.png",
},
high: {
en: "https://assets.tcgdex.net/en/bw/bw8/39/high.png",
fr: "https://assets.tcgdex.net/fr/bw/bw8/39/high.png",
},
},
evolveFrom: {
en: "Frillish",
fr: "Viskuse",
},
tags: [
Tag.STAGE1,
],
illustrator: {
id: 4,
name: "5ban Graphics"
},
abilities: [{
id: 1044,
type: AbilityType.TALENT,
name: {
en: "Spiteful Spirit",
fr: "Esprit Malveillant",
},
text: {
en: "If this Pokémon is your Active Pokémon and is Knocked Out by damage from an opponent's attack, the Attacking Pokémon is now Confused and Poisoned.",
fr: "Si ce Pokémon est votre Pokémon Actif et est mis K.O. par les dégâts d'une attaque de votre adversaire, le Pokémon Attaquant est maintenant Confus et Empoisonné.",
}
}],
attacks: [{
cost: [
Type.WATER,
Type.COLORLESS
],
name: {
en: "Aqua Bullet",
fr: "Aquaballe",
},
text: {
en: "Does 10 damage to 1 of your opponent's Benched Pokémon. (Don't apply Weakness and Resistance for Benched Pokémon.)",
fr: "Inflige 10 dégâts à 1 des Pokémon de Banc de votre adversaire. (N'appliquez ni la Faiblesse ni la Résistance aux Pokémon de Banc.)",
},
damage: 40
}],
weaknesses: [{
type: Type.LIGHTNING,
value: "×2"
}],
retreat: 2,
rarity: Rarity.Rare,
category: Category.POKEMON,
set: {
name: "Plasma Storm",
code: "bw8"
}
}
export default card