1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-14 08:39:17 +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/sm6/10.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: "sm6-10",
localId: 10,
// Card informations
name: {
en: "Gogoat",
fr: "Chevroum",
},
hp: 120,
type: [
Type.GRASS,
],
dexId: 673,
image: {
low: {
en: "https://assets.tcgdex.net/en/sm/sm6/10/low.png",
fr: "https://assets.tcgdex.net/fr/sm/sm6/10/low.png",
},
high: {
en: "https://assets.tcgdex.net/en/sm/sm6/10/high.png",
fr: "https://assets.tcgdex.net/fr/sm/sm6/10/high.png",
},
},
evolveFrom: {
en: "Skiddo",
fr: "Cabriolaine",
},
tags: [
Tag.STAGE1,
],
illustrator: {
id: 50,
name: "Anesaki Dynamic"
},
attacks: [{
cost: [
Type.GRASS
],
name: {
en: "Milk Drink",
fr: "Lait à Boire",
},
text: {
en: "Flip 2 coins. For each heads, heal 40 damage from this Pokémon.",
fr: "Lancez 2 pièces. Pour chaque côté face, soignez 40 dégâts à ce Pokémon.",
},
},{
cost: [
Type.GRASS,
Type.COLORLESS,
Type.COLORLESS
],
name: {
en: "Double-Edge",
fr: "Damoclès",
},
text: {
en: "This Pokémon does 30 damage to itself.",
fr: "Ce Pokémon sinflige 30 dégâts.",
},
damage: 120
}],
weaknesses: [{
type: Type.FIRE,
value: "×2"
}],
retreat: 2,
rarity: Rarity.Uncommon,
category: Category.POKEMON,
set: {
name: "Forbidden Light",
code: "sm6"
}
}
export default card