1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-23 19:32:11 +00:00
Florian Bouillon 0d2a757cae
base DB
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2020-02-03 15:18:40 +01:00

107 lines
2.1 KiB
TypeScript
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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 à lun 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 cest face, cette attaque inflige 40 dégâts plus 40 dégâts supplémentaires. Si cest pile, défaussez-vous dune 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