mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 19:32:11 +00:00
64 lines
1.2 KiB
TypeScript
64 lines
1.2 KiB
TypeScript
import { Card } from '../../../interfaces'
|
||
import Set from '../Neo Genesis'
|
||
|
||
const card: Card = {
|
||
name: {
|
||
en: "Ampharos",
|
||
fr: "Pharamp"
|
||
},
|
||
|
||
illustrator: "Ken Sugimori",
|
||
rarity: "Rare",
|
||
category: "Pokemon",
|
||
set: Set,
|
||
|
||
dexId: [
|
||
181,
|
||
],
|
||
|
||
hp: 80,
|
||
|
||
types: [
|
||
"Lightning",
|
||
],
|
||
|
||
evolveFrom: {
|
||
en: "Flaaffy",
|
||
},
|
||
|
||
stage: "Stage2",
|
||
|
||
attacks: [
|
||
{
|
||
cost: [
|
||
"Lightning",
|
||
"Lightning",
|
||
"Lightning",
|
||
],
|
||
name: {
|
||
en: "Gigaspark",
|
||
fr: "Gigatincelle"
|
||
},
|
||
effect: {
|
||
en: "Flip a coin. If heads, the Defending Pokémon is now Paralyzed and this attack does 10 damage to each of your opponent's Benched Pokémon. (Don't apply Weakness and Resistance for Benched Pokémon.)",
|
||
fr: "Lancez un pièce. Si c'est face, le Pokémon Défenseur est maintenant Paralysé et cette attaque inflige 10 dégâts à chacun des Pokémon du Banc de votre adversaire. (Ne pas appliquer la Faiblesse et la Résistance aux Pokémon du Banc.)"
|
||
},
|
||
damage: 40,
|
||
|
||
},
|
||
],
|
||
|
||
weaknesses: [
|
||
{
|
||
type: "Fighting",
|
||
value: "×2"
|
||
},
|
||
],
|
||
|
||
description: {
|
||
fr: "La pointe de sa queue luit intensément et on l'aperçoit de très loin. Il sert de balise aux gens perdus."
|
||
}
|
||
}
|
||
|
||
export default card
|