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

108
cards/sm/smp/SM20.ts Normal file
View File

@ -0,0 +1,108 @@
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: "smp-SM20",
localId: "SM20",
// Card informations
name: {
en: "Mudsdale",
fr: "Bourrinos",
},
hp: 140,
type: [
Type.FIGHTING,
],
dexId: 750,
image: {
low: {
en: "https://assets.tcgdex.net/en/sm/smp/SM20/low.png",
fr: "https://assets.tcgdex.net/fr/sm/smp/SM20/low.png",
},
high: {
en: "https://assets.tcgdex.net/en/sm/smp/SM20/high.png",
fr: "https://assets.tcgdex.net/fr/sm/smp/SM20/high.png",
},
},
evolveFrom: {
en: "Mudbray",
fr: "Tiboudet",
},
tags: [
Tag.STAGE1,
],
illustrator: {
id: 9,
name: "Mitsuhiro Arita"
},
attacks: [{
cost: [
Type.FIGHTING,
Type.FIGHTING,
Type.COLORLESS
],
name: {
en: "Enhanced Stomp",
fr: "Piétinement Amélioré",
},
text: {
en: "If this Pokémon has a Pokémon Tool card attached to it, this attack does 60 more damage.",
fr: "Si une carte Outil Pokémon est attachée à ce Pokémon, cette attaque inflige 60 dégâts supplémentaires.",
},
damage: 60
},{
cost: [
Type.FIGHTING,
Type.FIGHTING,
Type.FIGHTING,
Type.COLORLESS
],
name: {
en: "High Horsepower",
fr: "Cavalerie Lourde",
},
text: {
en: "This Pokémon does 40 damage to itself.",
fr: "Ce Pokémon sinflige 40 dégâts.",
},
damage: 180
}],
weaknesses: [{
type: Type.GRASS,
value: "×2"
}],
retreat: 4,
rarity: Rarity.Common,
category: Category.POKEMON,
set: {
name: "SM Black Star Promos",
code: "smp"
}
}
export default card