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

104
cards/sm/sm11/51.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: "sm11-51",
localId: 51,
// Card informations
name: {
en: "Golisopod",
fr: "Sarmuraï",
},
hp: 140,
type: [
Type.WATER,
],
dexId: 768,
image: {
low: {
en: "https://assets.tcgdex.net/en/sm/sm11/51/low.png",
fr: "https://assets.tcgdex.net/fr/sm/sm11/51/low.png",
},
high: {
en: "https://assets.tcgdex.net/en/sm/sm11/51/high.png",
fr: "https://assets.tcgdex.net/fr/sm/sm11/51/high.png",
},
},
evolveFrom: {
en: "Wimpod",
fr: "Sovkipou",
},
tags: [
Tag.STAGE1,
],
illustrator: {
id: 8,
name: "Masakazu Fukuda"
},
abilities: [{
id: 1390,
type: AbilityType.TALENT,
name: {
en: "Emergency Exit",
fr: "Repli Tactique",
},
text: {
en: "If this Pokémon has 2 or fewer Energy attached to it, it has no Retreat Cost.",
fr: "Si 2 Énergies ou moins sont attachées à ce Pokémon, il na pas de Coût de Retraite.",
}
}],
attacks: [{
cost: [
Type.WATER,
Type.COLORLESS,
Type.COLORLESS,
Type.COLORLESS
],
name: {
en: "First Impression",
fr: "Escarmouche",
},
text: {
en: "If this Pokémon was on the Bench and became your Active Pokémon this turn, this attack does 60 more damage.",
fr: "Si ce Pokémon était sur le Banc et est devenu votre Pokémon Actif pendant ce tour, cette attaque inflige 60 dégâts supplémentaires.",
},
damage: 120
}],
weaknesses: [{
type: Type.GRASS,
value: "×2"
}],
retreat: 4,
rarity: Rarity.RareHolo,
category: Category.POKEMON,
set: {
name: "Unified Minds",
code: "sm11"
}
}
export default card