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

121 lines
2.3 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: "pl1-1",
localId: 1,
// Card informations
name: {
en: "Ampharos",
fr: "Pharamp",
},
hp: 130,
type: [
Type.LIGHTNING,
],
dexId: 181,
image: {
low: {
en: "https://assets.tcgdex.net/en/pl/pl1/1/low.png",
fr: "https://assets.tcgdex.net/fr/pl/pl1/1/low.png",
},
high: {
en: "https://assets.tcgdex.net/en/pl/pl1/1/high.png",
fr: "https://assets.tcgdex.net/fr/pl/pl1/1/high.png",
},
},
evolveFrom: {
en: "Flaaffy",
fr: "Lainergie",
},
tags: [
Tag.STAGE2,
],
illustrator: {
id: 32,
name: "Atsuko Nishida"
},
abilities: [{
id: 359,
type: AbilityType.POKEBODY,
name: {
en: "Damage Bind",
fr: "Attache-dégâts",
},
text: {
en: "Each Pokémon that has any damage counters on it (both yours and your opponent's) can't use any Poké-Powers.",
fr: "Chaque Pokémon possédant des marqueurs de dégâts (les vôtres et ceux de votre adversaire) ne peut pas utiliser de Poké-Powers.",
}
}],
attacks: [{
cost: [
Type.LIGHTNING,
Type.COLORLESS
],
name: {
en: "Gigavolt",
fr: "Gigavolt",
},
text: {
en: "Flip a coin. If heads, this attack does 30 damage plus 30 more damage. If tails, the Defending Pokémon is now Paralyzed.",
fr: "Lancez une pièce. Si c'est face, cette attaque inflige 30 dégâts plus 30 dégâts supplémentaires. Si c'est pile, le Pokémon Défenseur est maintenant Paralysé.",
},
damage: 30
},{
cost: [
Type.LIGHTNING,
Type.COLORLESS,
Type.COLORLESS
],
name: {
en: "Reflect Energy",
fr: "Renvoi d'énergie",
},
text: {
en: "Move an Energy card attached to Ampharos to 1 of your Benched Pokémon.",
fr: "Déplacez une carte Énergie attachée à Pharamp sur 1 des Pokémon de votre Banc.",
},
damage: 70
}],
weaknesses: [{
type: Type.FIGHTING,
value: "+30"
}],
resistances: [{
type: Type.METAL,
value: "-20"
}],
retreat: 2,
rarity: Rarity.RareHolo,
category: Category.POKEMON,
set: {
name: "Platinum",
code: "pl1"
}
}
export default card