1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-25 12:22:14 +00:00
Florian Bouillon 46220745ce
Pop serie do not report any sets (#27)
* rename to another name
* renamed
* Renamed references
2021-06-02 12:13:12 +02:00

72 lines
1.2 KiB
TypeScript

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 opponent's Pokémon. You can't 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 opponent's Benched Pokémon that has any Energy cards attached to it. (Don't apply Weakness and Resistance for Benched Pokémon.)",
},
damage: 70,
},
],
weaknesses: [
{
type: "Fighting",
value: "+30"
},
],
resistances: [
{
type: "Metal",
value: "-20"
},
],
}
export default card