mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 03:12:10 +00:00
76 lines
1.6 KiB
TypeScript
76 lines
1.6 KiB
TypeScript
import { Card } from '../../../interfaces'
|
||
import Set from '../Rising Rivals'
|
||
|
||
const card: Card = {
|
||
name: {
|
||
en: "Ambipom G",
|
||
fr: "Capidextre Niv. 40",
|
||
de: "Ambidiffel G"
|
||
},
|
||
illustrator: "Makoto Imai",
|
||
rarity: "Common",
|
||
category: "Pokemon",
|
||
|
||
set: Set,
|
||
dexId: [
|
||
424,
|
||
],
|
||
hp: 80,
|
||
types: [
|
||
"Colorless",
|
||
],
|
||
|
||
stage: "Basic",
|
||
suffix: "SP",
|
||
|
||
attacks: [
|
||
{
|
||
cost: [
|
||
"Colorless",
|
||
],
|
||
name: {
|
||
en: "Tail Code",
|
||
fr: "Queue codée",
|
||
de: "Schweifcode"
|
||
},
|
||
effect: {
|
||
en: "Move an Energy card attached to the Defending Pokémon to another of your opponent's Pokémon.",
|
||
fr: "Déplacez une carte Énergie attachée au Pokémon Défenseur sur un autre des Pokémon de votre adversaire.",
|
||
de: "Entferne 1 an das Verteidigende Pokémon angelegte Energiekarte und lege sie an 1 anderes Pokémon deines Gegners an."
|
||
},
|
||
|
||
},
|
||
{
|
||
cost: [
|
||
"Colorless",
|
||
"Colorless",
|
||
],
|
||
name: {
|
||
en: "Snap Attack",
|
||
fr: "Attaque soudaine",
|
||
de: "Schnappangriff"
|
||
},
|
||
effect: {
|
||
en: "If the Defending Pokémon has any Energy cards attached to it, this attack's base damage is 20 instead of 60.",
|
||
fr: "Si le Pokémon Défenseur possède des cartes Énergie, les dégâts de base de cette attaque sont de 20 au lieu de 60.",
|
||
de: "Wenn am Verteidigenden Pokémon mindestens 1 Energiekarte angelegt ist, beträgt der Grundschaden dieses Angriffs 20 Schadenspunkte anstelle von 60 Schadenspunkten."
|
||
},
|
||
damage: 60,
|
||
|
||
},
|
||
],
|
||
weaknesses: [
|
||
{
|
||
type: "Fighting",
|
||
value: "×2"
|
||
},
|
||
],
|
||
|
||
retreat: 1,
|
||
|
||
|
||
|
||
}
|
||
|
||
export default card
|