1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-14 00:29:19 +00:00

Fixed most POP sets (#99)

Signed-off-by: Avior <github@avior.me>
This commit is contained in:
2021-10-26 17:23:45 +02:00
committed by GitHub
parent 829d78fa6f
commit afd3a664ae
153 changed files with 2328 additions and 1124 deletions

View File

@ -5,21 +5,26 @@ 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: [
@ -29,10 +34,11 @@ const card: Card = {
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.",
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: [
@ -44,18 +50,20 @@ const card: Card = {
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.)",
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",
@ -63,9 +71,18 @@ const card: Card = {
},
],
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