mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 19:32:11 +00:00
107 lines
2.1 KiB
TypeScript
107 lines
2.1 KiB
TypeScript
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: "hgss1-105",
|
||
localId: 105,
|
||
|
||
// Card informations
|
||
name: {
|
||
en: "Ampharos",
|
||
fr: "Pharamp",
|
||
},
|
||
|
||
hp: 140,
|
||
|
||
type: [
|
||
Type.LIGHTNING,
|
||
],
|
||
|
||
dexId: 181,
|
||
|
||
image: {
|
||
low: {
|
||
en: "https://assets.tcgdex.net/en/hgss/hgss1/105/low.png",
|
||
fr: "https://assets.tcgdex.net/fr/hgss/hgss1/105/low.png",
|
||
},
|
||
high: {
|
||
en: "https://assets.tcgdex.net/en/hgss/hgss1/105/high.png",
|
||
fr: "https://assets.tcgdex.net/fr/hgss/hgss1/105/high.png",
|
||
},
|
||
},
|
||
|
||
evolveFrom: {
|
||
en: "Flaaffy",
|
||
fr: "Lainergie",
|
||
},
|
||
|
||
tags: [
|
||
Tag.STAGE2,
|
||
],
|
||
|
||
illustrator: {
|
||
id: 44,
|
||
name: "Kent Kanetsuna"
|
||
},
|
||
|
||
abilities: [{
|
||
id: 588,
|
||
type: AbilityType.POKEBODY,
|
||
name: {
|
||
en: "Conductivity",
|
||
fr: "Conductivité",
|
||
},
|
||
text: {
|
||
en: "Whenever your opponent attaches an Energy card from his or her hand to 1 of his or her Pokémon, put 1 damage counter on that Pokémon.",
|
||
fr: "Lorsque votre adversaire attache une carte Énergie de sa main à l’un de ses Pokémon, appliquez un marqueur de dégâts à ce Pokémon.",
|
||
}
|
||
}],
|
||
|
||
attacks: [{
|
||
cost: [
|
||
Type.LIGHTNING,
|
||
Type.COLORLESS,
|
||
Type.COLORLESS
|
||
],
|
||
name: {
|
||
en: "Lightning Crush",
|
||
fr: "Écras’éclair",
|
||
},
|
||
text: {
|
||
en: "Flip a coin. If heads, this attack does 40 damage plus 40 more damage. If tails, discard an Energy attached to the Defending Pokémon.",
|
||
fr: "Lancez une pièce. Si c’est face, cette attaque inflige 40 dégâts plus 40 dégâts supplémentaires. Si c’est pile, défaussez-vous d’une carte Énergie attachée au Pokémon Défenseur.",
|
||
},
|
||
damage: 40
|
||
}],
|
||
|
||
weaknesses: [{
|
||
type: Type.FIGHTING,
|
||
value: "×2"
|
||
}],
|
||
|
||
resistances: [{
|
||
type: Type.METAL,
|
||
value: "-20"
|
||
}],
|
||
|
||
retreat: 2,
|
||
|
||
rarity: Rarity.RarePrime,
|
||
|
||
category: Category.POKEMON,
|
||
|
||
set: {
|
||
name: "HeartGold & SoulSilver",
|
||
code: "hgss1"
|
||
}
|
||
}
|
||
|
||
export default card
|
||
|