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/sm3/78.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: "sm3-78",
localId: 78,
// Card informations
name: {
en: "Mudsdale",
fr: "Bourrinos",
},
hp: 130,
type: [
Type.FIGHTING,
],
dexId: 750,
image: {
low: {
en: "https://assets.tcgdex.net/en/sm/sm3/78/low.png",
fr: "https://assets.tcgdex.net/fr/sm/sm3/78/low.png",
},
high: {
en: "https://assets.tcgdex.net/en/sm/sm3/78/high.png",
fr: "https://assets.tcgdex.net/fr/sm/sm3/78/high.png",
},
},
evolveFrom: {
en: "Mudbray",
fr: "Tiboudet",
},
tags: [
Tag.STAGE1,
],
illustrator: {
id: 20,
name: "TOKIYA"
},
attacks: [{
cost: [
Type.COLORLESS,
Type.COLORLESS,
Type.COLORLESS
],
name: {
en: "Kick Away",
fr: "CoudPied Éjecteur",
},
text: {
en: "Your opponent switches their Active Pokémon with 1 of their Benched Pokémon.",
fr: "Votre adversaire échange son Pokémon Actif avec lun de ses Pokémon de Banc.",
},
damage: 60
},{
cost: [
Type.FIGHTING,
Type.COLORLESS,
Type.COLORLESS,
Type.COLORLESS
],
name: {
en: "Vigorous Dash",
fr: "Ruée Vigoureuse",
},
text: {
en: "This Pokémon does 30 damage to itself. This attack does 30 damage to 1 of your opponent's Benched Pokémon. (Don't apply Weakness and Resistance for Benched Pokémon.)",
fr: "Ce Pokémon sinflige 30 dégâts. Cette attaque inflige 30 dégâts à lun des Pokémon de Banc de votre adversaire. (Nappliquez ni la Faiblesse ni la Résistance aux Pokémon de Banc.)",
},
damage: 130
}],
weaknesses: [{
type: Type.GRASS,
value: "×2"
}],
retreat: 3,
rarity: Rarity.Rare,
category: Category.POKEMON,
set: {
name: "Burning Shadows",
code: "sm3"
}
}
export default card