1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-28 02:40:11 +00:00
Florian Bouillon 6d133f5343
Some checks failed
Build Docker image / build (push) Failing after 42s
feat: Add missing german sets (HGSS & COL) (#451)
2023-12-06 01:20:07 +01:00

101 lines
1.8 KiB
TypeScript
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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 '../HeartGold SoulSilver'
const card: Card = {
name: {
en: "Ampharos",
fr: "Pharamp",
de: "Ampharos"
},
illustrator: "Masakazu Fukuda",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
181,
],
hp: 120,
types: [
"Lightning",
],
evolveFrom: {
en: "Flaaffy",
fr: "Lainergie",
},
stage: "Stage2",
attacks: [
{
cost: [
"Lightning",
],
name: {
en: "Acceleration Bolt",
fr: "Éclair rapide",
de: "Beschleunigungsblitz"
},
effect: {
en: "Search your deck for up to 2 basic Energy cards and attach them to 1 of your Pokémon. Shuffle your deck afterward.",
fr: "Cherchez dans votre deck jusquà deux cartes Énergie de base et attachez-les à lun de vos Pokémon. Mélangez ensuite votre deck.",
de: "Durchsuche dein Deck nach bis zu 2 Basis-Energiekarten und lege sie an 1 deiner Pokémon an. Mische anschließend dein Deck."
},
damage: 30,
},
{
cost: [
"Lightning",
"Colorless",
"Colorless",
],
name: {
en: "Thunder",
fr: "Fatal-Foudre",
de: "Donner"
},
effect: {
en: "Flip a coin. If tails, Ampharos does 20 damage to itself.",
fr: "Lancez une pièce. Si cest pile, Pharamp sinflige 20 dégâts.",
de: "Wirf eine Münze. Bei \"Zahl\" fügt Ampharos sich selbst 20 Schadenspunkte zu."
},
damage: 80,
},
],
weaknesses: [
{
type: "Fighting",
value: "×2"
},
],
resistances: [
{
type: "Metal",
value: "-20"
},
],
retreat: 1,
description: {
en: "The tails tip shines brightly and can be seen from far away. It acts as a beacon for lost people."
},
variants: {
normal: true,
reverse: false,
holo: false,
firstEdition: false
}
}
export default card