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/sm1/105.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: "sm1-105",
localId: 105,
// Card informations
name: {
en: "Stoutland",
fr: "Mastouffe",
},
hp: 150,
type: [
Type.COLORLESS,
],
dexId: 508,
image: {
low: {
en: "https://assets.tcgdex.net/en/sm/sm1/105/low.png",
fr: "https://assets.tcgdex.net/fr/sm/sm1/105/low.png",
},
high: {
en: "https://assets.tcgdex.net/en/sm/sm1/105/high.png",
fr: "https://assets.tcgdex.net/fr/sm/sm1/105/high.png",
},
},
evolveFrom: {
en: "Herdier",
fr: "Ponchien",
},
tags: [
Tag.STAGE2,
],
illustrator: {
id: 0,
name: "Kagemaru Himeno"
},
attacks: [{
cost: [
Type.COLORLESS,
Type.COLORLESS,
Type.COLORLESS
],
name: {
en: "Ferocious Bellow",
fr: "Grognement Féroce",
},
text: {
en: "During your opponent's next turn, the Defending Pokémon's attacks do 50 less damage (before applying Weakness and Resistance).",
fr: "Pendant le prochain tour de votre adversaire, les attaques du Pokémon Défenseur infligent 50 dégâts de moins (avant application de la Faiblesse et de la Résistance).",
},
damage: 50
},{
cost: [
Type.COLORLESS,
Type.COLORLESS,
Type.COLORLESS,
Type.COLORLESS
],
name: {
en: "Hammer In",
fr: "Enfoncement",
},
damage: 120
}],
weaknesses: [{
type: Type.FIGHTING,
value: "×2"
}],
retreat: 3,
rarity: Rarity.Rare,
category: Category.POKEMON,
set: {
name: "Sun & Moon",
code: "sm1"
}
}
export default card