mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-24 11:52:16 +00:00
99 lines
1.9 KiB
TypeScript
99 lines
1.9 KiB
TypeScript
import Card from '@tcgdex/sdk/interfaces/Card'
|
||
import Type from '@tcgdex/sdk/interfaces/Type'
|
||
import Tag from '@tcgdex/sdk/interfaces/Tag'
|
||
import Rarity from '@tcgdex/sdk/interfaces/Rarity'
|
||
import AbilityType from '@tcgdex/sdk/interfaces/AbilityType'
|
||
import Category from '@tcgdex/sdk/interfaces/Category'
|
||
|
||
const card: Card = {
|
||
|
||
// ids
|
||
id: "sm11-14",
|
||
localId: 14,
|
||
|
||
// Card informations
|
||
name: {
|
||
en: "Amoonguss",
|
||
fr: "Gaulet",
|
||
},
|
||
|
||
hp: 100,
|
||
|
||
type: [
|
||
Type.GRASS,
|
||
],
|
||
|
||
dexId: 591,
|
||
|
||
image: {
|
||
low: {
|
||
en: "https://assets.tcgdex.net/en/sm/sm11/14/low",
|
||
fr: "https://assets.tcgdex.net/fr/sm/sm11/14/low",
|
||
},
|
||
high: {
|
||
en: "https://assets.tcgdex.net/en/sm/sm11/14/high",
|
||
fr: "https://assets.tcgdex.net/fr/sm/sm11/14/high",
|
||
},
|
||
},
|
||
|
||
evolveFrom: {
|
||
en: "Foongus",
|
||
fr: "Trompignon",
|
||
},
|
||
|
||
tags: [
|
||
Tag.STAGE1,
|
||
],
|
||
|
||
illustrator: "Midori Harada",
|
||
|
||
abilities: [{
|
||
id: 851,
|
||
type: AbilityType.TALENT,
|
||
name: {
|
||
en: "Bursting Spores",
|
||
fr: "Nuée de Spores",
|
||
},
|
||
text: {
|
||
en: "Whenever you play a Pokémon that has the Spore attack from your hand during your turn, you may leave your opponent's Active Pokémon Asleep and Poisoned.",
|
||
fr: "Chaque fois que vous jouez un Pokémon qui a l’attaque Spore de votre main pendant votre tour, vous pouvez laisser le Pokémon Actif de votre adversaire Endormi et Empoisonné.",
|
||
}
|
||
}],
|
||
|
||
attacks: [{
|
||
cost: [
|
||
Type.COLORLESS,
|
||
Type.COLORLESS
|
||
],
|
||
name: {
|
||
en: "Venoshock",
|
||
fr: "Choc Venin",
|
||
},
|
||
text: {
|
||
en: "If your opponent's Active Pokémon is Poisoned, this attack does 70 more damage.",
|
||
fr: "Si le Pokémon Actif de votre adversaire est Empoisonné, cette attaque inflige 70 dégâts supplémentaires.",
|
||
},
|
||
damage: 20
|
||
}],
|
||
|
||
weaknesses: [{
|
||
type: Type.FIRE,
|
||
value: "×2"
|
||
}],
|
||
|
||
|
||
|
||
retreat: 2,
|
||
|
||
rarity: Rarity.RARE,
|
||
|
||
category: Category.POKEMON,
|
||
|
||
set: {
|
||
name: "Unified Minds",
|
||
code: "sm11"
|
||
}
|
||
}
|
||
|
||
export default card
|