mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-25 04:12:11 +00:00
* Added basic translation IT will need a second checkup by another source as attacks are not correcly ordered Signed-off-by: Florian BOUILLON <florian.bouillon@delta-wings.net> * Removed bugged file Signed-off-by: Florian BOUILLON <florian.bouillon@delta-wings.net>
85 lines
2.4 KiB
TypeScript
85 lines
2.4 KiB
TypeScript
import { Card } from '../../../interfaces'
|
||
import Set from '../Dragons Exalted'
|
||
|
||
const card: Card = {
|
||
name: {
|
||
en: "Ampharos",
|
||
fr: "Pharamp",
|
||
es: "Ampharos",
|
||
it: "Ampharos",
|
||
pt: "Ampharos",
|
||
de: "Ampharos"
|
||
},
|
||
illustrator: "Hajime Kusajima",
|
||
rarity: "Rare",
|
||
category: "Pokemon",
|
||
|
||
set: Set,
|
||
dexId: [
|
||
181,
|
||
],
|
||
hp: 140,
|
||
types: [
|
||
"Lightning",
|
||
],
|
||
evolveFrom: {
|
||
en: "Flaaffy",
|
||
fr: "Lainergie",
|
||
},
|
||
stage: "Stage2",
|
||
|
||
abilities: [
|
||
{
|
||
type: "Ability",
|
||
name: {
|
||
en: "Electromagnetic Wall",
|
||
fr: "Mur Électromagnétique",
|
||
es: "Muro Electromagnético",
|
||
it: "Magnetomuro",
|
||
pt: "Parede Eletromagnética",
|
||
de: "Elektromagnetischer Wall"
|
||
},
|
||
effect: {
|
||
en: "As long as this Pokémon is your Active Pokémon, whenever your opponent attaches an Energy from his or her hand to 1 of his or her Pokémon, put 3 damage counters on that Pokémon.",
|
||
fr: "Tant que ce Pokémon est votre Pokémon Actif, chaque fois que votre adversaire attache une Énergie de sa main à 1 de ses Pokémon, placez 3 marqueurs de dégâts sur le Pokémon auquel l’Énergie a été attachée.",
|
||
es: "Mientras este Pokémon sea tu Pokémon Activo, cada vez que tu rival una a 1 de sus Pokémon una Energía de su mano, pon 3 contadores de daño en ese Pokémon.",
|
||
it: "Fintanto che questo Pokémon è il tuo Pokémon attivo, ogni volta che il tuo avversario assegna un’Energia dalla sua mano a uno dei suoi Pokémon, metti tre segnalini danno su quel Pokémon.",
|
||
pt: "Enquanto este Pokémon for seu Pokémon Ativo, sempre que seu oponente ligar uma Energia da própria mão a 1 dos Pokémon dele ou dela, coloque 3 marcadores de danos nesse Pokémon.",
|
||
de: "Solang dieses Pokémon dein Aktives Pokémon ist, lege jedes Mal, wenn dein Gegner 1 Energie von seiner Hand an 1 seiner Pokémon anlegt, 3 Schadensmarken auf Letzteres."
|
||
},
|
||
},
|
||
],
|
||
attacks: [
|
||
{
|
||
cost: [
|
||
"Lightning",
|
||
"Colorless",
|
||
"Colorless",
|
||
],
|
||
name: {
|
||
en: "Electrobullet",
|
||
fr: "Électrojectile",
|
||
},
|
||
effect: {
|
||
en: "Does 20 damage to 1 of your opponent's Benched Pokémon. (Don't apply Weakness and Resistance for Benched Pokémon.)",
|
||
fr: "Inflige 20 dégâts à 1 des Pokémon de Banc de votre adversaire. (N'appliquez ni la Faiblesse ni la Résistance aux Pokémon de Banc.)",
|
||
},
|
||
damage: 70,
|
||
|
||
},
|
||
],
|
||
weaknesses: [
|
||
{
|
||
type: "Fighting",
|
||
value: "×2"
|
||
},
|
||
],
|
||
|
||
retreat: 2,
|
||
|
||
|
||
|
||
}
|
||
|
||
export default card
|