1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-25 12:22:14 +00:00
Florian Bouillon afd3a664ae
Fixed most POP sets (#99)
Signed-off-by: Avior <github@avior.me>
2021-10-26 17:23:45 +02:00

89 lines
1.4 KiB
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

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'
import Set from '../POP Series 7'
const card: Card = {
name: {
en: "Ampharos",
},
illustrator: "Kouki Saitou",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
181,
],
hp: 130,
types: [
"Lightning",
],
evolveFrom: {
en: "Flaaffy",
},
stage: "Stage2",
abilities: [
{
type: "Poke-BODY",
name: {
en: "Jamming",
},
effect: {
en: "After your opponent plays a Supporter card from his or her hand, put 1 damage counter on each of your opponents Pokémon. You cant use more than 1 Jamming Poké-Body each turn.",
},
},
],
attacks: [
{
cost: [
"Lightning",
"Colorless",
"Colorless",
],
name: {
en: "Cluster Bolt",
},
effect: {
en: "You may discard all Lightning Energy attached to Ampharos. If you do, this attack does 20 damage to each of your opponents Benched Pokémon that has any Energy cards attached to it. (Dont apply Weakness and Resistance for Benched Pokémon.)",
},
damage: 70,
},
],
weaknesses: [
{
type: "Fighting",
value: "+30"
},
],
resistances: [
{
type: "Metal",
value: "-20"
},
],
description: {
en: "The tip of its tail shines brightly. In the olden days, people sent signals using the tails light."
},
retreat: 3,
variants: {
normal: true,
reverse: false,
holo: true,
firstEdition: false
}
}
export default card