1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-15 00:49: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

104
cards/sm/sm10/56.ts Normal file
View File

@ -0,0 +1,104 @@
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: "sm10-56",
localId: 56,
// Card informations
name: {
en: "Stunfisk",
fr: "Limonde",
},
hp: 110,
type: [
Type.LIGHTNING,
],
dexId: 618,
image: {
low: {
en: "https://assets.tcgdex.net/en/sm/sm10/56/low.png",
fr: "https://assets.tcgdex.net/fr/sm/sm10/56/low.png",
},
high: {
en: "https://assets.tcgdex.net/en/sm/sm10/56/high.png",
fr: "https://assets.tcgdex.net/fr/sm/sm10/56/high.png",
},
},
evolveFrom: {},
tags: [
Tag.BASIC,
],
illustrator: {
id: 96,
name: "sowsow"
},
attacks: [{
cost: [
Type.COLORLESS
],
name: {
en: "Raging Thunder",
fr: "Tonnerre Déchaîné",
},
text: {
en: "This attack does 10 damage to 1 of your Benched Pokémon. (Don't apply Weakness and Resistance for Benched Pokémon.)",
fr: "Cette attaque inflige 10 dégâts à lun de vos Pokémon de Banc. (Nappliquez ni la Faiblesse ni la Résistance aux Pokémon de Banc.)",
},
damage: 30
},{
cost: [
Type.COLORLESS,
Type.COLORLESS
],
name: {
en: "Electric Trap",
fr: "Piège Électrique",
},
text: {
en: "This attack does 30 damage for each of your Pokémon that has any damage counters on it.",
fr: "Cette attaque inflige 30 dégâts pour chacun de vos Pokémon ayant au moins un marqueur de dégâts.",
},
damage: 30
}],
weaknesses: [{
type: Type.FIGHTING,
value: "×2"
}],
resistances: [{
type: Type.METAL,
value: "-20"
}],
retreat: 3,
rarity: Rarity.Rare,
category: Category.POKEMON,
set: {
name: "Unbroken Bonds",
code: "sm10"
}
}
export default card