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

100
cards/sm/smp/SM209.ts Normal file
View File

@ -0,0 +1,100 @@
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-SM209",
localId: "SM209",
// Card informations
name: {
en: "Stakataka",
fr: "Ama-Ama",
},
hp: 120,
type: [
Type.FIGHTING,
],
dexId: 805,
image: {
low: {
en: "https://assets.tcgdex.net/en/sm/smp/SM209/low.png",
fr: "https://assets.tcgdex.net/fr/sm/smp/SM209/low.png",
},
high: {
en: "https://assets.tcgdex.net/en/sm/smp/SM209/high.png",
fr: "https://assets.tcgdex.net/fr/sm/smp/SM209/high.png",
},
},
evolveFrom: {},
tags: [
Tag.BASIC,
],
illustrator: {
id: 19,
name: "Shin Nagasawa"
},
abilities: [{
id: 139,
type: AbilityType.TALENT,
name: {
en: "Wall of Stone",
fr: "Mur de Pierres",
},
text: {
en: "If your opponent has 3 or fewer Prize cards remaining, this Pokémon's maximum HP is 200.",
fr: "Sil reste 3 cartes Récompense ou moins à votre adversaire, les PV maximum de ce Pokémon sont de 200.",
}
}],
attacks: [{
cost: [
Type.FIGHTING,
Type.FIGHTING,
Type.COLORLESS
],
name: {
en: "Top Down",
fr: "ÉcrasMontagne",
},
text: {
en: "Flip a coin until you get tails. For each heads, discard the top card of your opponent's deck.",
fr: "Lancez une pièce jusquà ce que vous obteniez un côté pile. Pour chaque côté face, défaussez la carte du dessus du deck de votre adversaire.",
},
damage: 110
}],
weaknesses: [{
type: Type.GRASS,
value: "×2"
}],
retreat: 4,
rarity: Rarity.Rare,
category: Category.POKEMON,
set: {
name: "SM Black Star Promos",
code: "smp"
}
}
export default card