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

108
cards/sm/sm9/103.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: "sm9-103",
localId: 103,
// Card informations
name: {
en: "Ferrothorn",
fr: "Noacier",
},
hp: 120,
type: [
Type.METAL,
],
dexId: 598,
image: {
low: {
en: "https://assets.tcgdex.net/en/sm/sm9/103/low.png",
fr: "https://assets.tcgdex.net/fr/sm/sm9/103/low.png",
},
high: {
en: "https://assets.tcgdex.net/en/sm/sm9/103/high.png",
fr: "https://assets.tcgdex.net/fr/sm/sm9/103/high.png",
},
},
evolveFrom: {
en: "Ferroseed",
fr: "Grindur",
},
tags: [
Tag.STAGE1,
],
illustrator: {
id: 80,
name: "Hasuno"
},
attacks: [{
cost: [
Type.METAL
],
name: {
en: "Guard Press",
fr: "Pression de Garde",
},
text: {
en: "During your opponent's next turn, this Pokémon takes 20 less damage from attacks (after applying Weakness and Resistance).",
fr: "Pendant le prochain tour de votre adversaire, ce Pokémon subit 20 dégâts de moins provenant des attaques (après application de la Faiblesse et de la Résistance).",
},
damage: 20
},{
cost: [
Type.COLORLESS,
Type.COLORLESS,
Type.COLORLESS
],
name: {
en: "Thorn Pod Throw",
fr: "Lancer de Boule Épine",
},
text: {
en: "This attack does 20 damage times the amount of Metal Energy attached to this Pokémon to 1 of your opponent's Benched Pokémon. You can't do more than 100 damage to a Benched Pokémon in this way. (Don't apply Weakness and Resistance for Benched Pokémon.)",
fr: "Cette attaque inflige 20 dégâts, multipliés par le nombre dÉnergies Metal attachées à ce Pokémon, à lun des Pokémon de Banc de votre adversaire. Vous ne pouvez pas infliger plus de 100 dégâts à un Pokémon de Banc de cette façon. (Nappliquez ni la Faiblesse ni la Résistance aux Pokémon de Banc.)",
},
damage: 80
}],
weaknesses: [{
type: Type.FIRE,
value: "×2"
}],
resistances: [{
type: Type.PSYCHIC,
value: "-20"
}],
retreat: 3,
rarity: Rarity.Rare,
category: Category.POKEMON,
set: {
name: "Team Up",
code: "sm9"
}
}
export default card