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

111
cards/sm/sm7/87.ts Normal file
View File

@ -0,0 +1,111 @@
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: "sm7-87",
localId: 87,
// Card informations
name: {
en: "Tyranitar",
fr: "Tyranocif",
},
hp: 170,
type: [
Type.DARKNESS,
],
dexId: 248,
image: {
low: {
en: "https://assets.tcgdex.net/en/sm/sm7/87/low.png",
fr: "https://assets.tcgdex.net/fr/sm/sm7/87/low.png",
},
high: {
en: "https://assets.tcgdex.net/en/sm/sm7/87/high.png",
fr: "https://assets.tcgdex.net/fr/sm/sm7/87/high.png",
},
},
evolveFrom: {
en: "Pupitar",
fr: "Ymphect",
},
tags: [
Tag.STAGE2,
],
illustrator: {
id: 60,
name: "Hironobu Yoshida"
},
attacks: [{
cost: [
Type.COLORLESS,
Type.COLORLESS,
Type.COLORLESS
],
name: {
en: "Slam",
fr: "Souplesse",
},
text: {
en: "Flip 2 coins. This attack does 60 damage for each heads.",
fr: "Lancez 2 pièces. Cette attaque inflige 60 dégâts multipliés par le nombre de côtés face.",
},
damage: 60
},{
cost: [
Type.DARKNESS,
Type.DARKNESS,
Type.COLORLESS,
Type.COLORLESS
],
name: {
en: "Trample",
fr: "Bousculade",
},
text: {
en: "For each Benched Pokémon (both yours and your opponent's), flip a coin. If heads, this attack does 60 damage to that Pokémon. This attack's damage isn't affected by Weakness or Resistance.",
fr: "Lancez une pièce pour chaque Pokémon de Banc (les vôtres et ceux de votre adversaire). Si cest face, cette attaque inflige 60 dégâts au Pokémon ciblé. Les dégâts de cette attaque ne sont pas affectés par la Faiblesse ou la Résistance.",
},
damage: 120
}],
weaknesses: [{
type: Type.FIGHTING,
value: "×2"
}],
resistances: [{
type: Type.PSYCHIC,
value: "-20"
}],
retreat: 3,
rarity: Rarity.RareHolo,
category: Category.POKEMON,
set: {
name: "Celestial Storm",
code: "sm7"
}
}
export default card