mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-30 06:42:10 +00:00
104 lines
2.7 KiB
TypeScript
104 lines
2.7 KiB
TypeScript
import { Card } from '../../../interfaces'
|
||
import Set from '../Unbroken Bonds'
|
||
|
||
const card: Card = {
|
||
name: {
|
||
en: "Aggron",
|
||
fr: "Galeking",
|
||
es: "Aggron",
|
||
it: "Aggron",
|
||
pt: "Aggron",
|
||
de: "Stolloss"
|
||
},
|
||
illustrator: "Satoshi Shirai",
|
||
rarity: "Rare",
|
||
category: "Pokemon",
|
||
|
||
set: Set,
|
||
dexId: [
|
||
306,
|
||
],
|
||
hp: 170,
|
||
types: [
|
||
"Metal",
|
||
],
|
||
evolveFrom: {
|
||
en: "Lairon",
|
||
fr: "Galegon",
|
||
},
|
||
stage: "Stage2",
|
||
|
||
|
||
attacks: [
|
||
{
|
||
cost: [
|
||
"Metal",
|
||
"Colorless",
|
||
"Colorless",
|
||
],
|
||
name: {
|
||
en: "Extra-Tight Press",
|
||
fr: "Pression Super Serrée",
|
||
es: "Presión Extraajustada",
|
||
it: "Pressa Stritolante",
|
||
pt: "Aperto Espremido",
|
||
de: "Druckgriff"
|
||
},
|
||
effect: {
|
||
en: "During your opponent’s next turn, if this Pokémon is damaged by an attack (even if this Pokémon is Knocked Out), put 8 damage counters on the Attacking Pokémon.",
|
||
fr: "Pendant le prochain tour de votre adversaire, si ce Pokémon subit les dégâts d’une attaque (même si ce Pokémon est mis K.O.), placez 8 marqueurs de dégâts sur le Pokémon Attaquant.",
|
||
es: "Durante el próximo turno de tu rival, si este Pokémon resulta dañado por un ataque (incluso si este Pokémon queda Fuera de Combate), pon 8 contadores de daño en el Pokémon Atacante.",
|
||
it: "Durante il prossimo turno del tuo avversario, se questo Pokémon è danneggiato da un attacco, anche se viene messo KO, metti otto segnalini danno sul Pokémon attaccante.",
|
||
pt: "Durante a próxima vez de jogar do seu oponente, se este Pokémon for danificado por um ataque (mesmo que este Pokémon seja Nocauteado), coloque 8 contadores de dano no Pokémon Atacante.",
|
||
de: "Wenn diesem Pokémon während des nächsten Zuges deines Gegners durch eine Attacke Schaden zugefügt wird (auch wenn dieses Pokémon dadurch kampfunfähig wird), lege 8 Schadensmarken auf das Angreifende Pokémon."
|
||
},
|
||
damage: 80,
|
||
|
||
},
|
||
{
|
||
cost: [
|
||
"Metal",
|
||
"Colorless",
|
||
"Colorless",
|
||
"Colorless",
|
||
],
|
||
name: {
|
||
en: "Giga Impact",
|
||
fr: "Giga Impact",
|
||
es: "Giga Impacto",
|
||
it: "Gigaimpatto",
|
||
pt: "Gigaimpacto",
|
||
de: "Gigastoß"
|
||
},
|
||
effect: {
|
||
en: "This Pokémon can’t attack during your next turn.",
|
||
fr: "Ce Pokémon ne peut pas attaquer pendant votre prochain tour.",
|
||
es: "Este Pokémon no puede atacar durante tu próximo turno.",
|
||
it: "Questo Pokémon non può attaccare durante il tuo prossimo turno.",
|
||
pt: "Este Pokémon não poderá atacar durante a sua próxima vez de jogar.",
|
||
de: "Dieses Pokémon kann während deines nächsten Zuges nicht angreifen."
|
||
},
|
||
damage: 160,
|
||
|
||
},
|
||
],
|
||
weaknesses: [
|
||
{
|
||
type: "Fire",
|
||
value: "×2"
|
||
},
|
||
],
|
||
resistances: [
|
||
{
|
||
type: "Psychic",
|
||
value: "-20"
|
||
},
|
||
],
|
||
retreat: 4,
|
||
|
||
|
||
|
||
}
|
||
|
||
export default card
|