1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-25 12:22:14 +00:00
Florian Bouillon e500777516 Started to add variants information for the two most recent sets
Signed-off-by: Florian BOUILLON <florian.bouillon@delta-wings.net>
2021-07-21 12:16:52 +02:00

92 lines
2.9 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 '../Chilling Reign'
const card: Card = {
set: Set,
name: {
en: "Aggron",
fr: "Galeking",
es: "Aggron",
it: "Aggron",
pt: "Aggron",
de: "Stolloss"
},
illustrator: "Teeziro",
rarity: "Rare",
category: "Pokemon",
hp: 180,
types: ["Metal"],
evolveFrom: {
en: "Lairon",
fr: "Galegon"
},
attacks: [{
name: {
en: "Guard Press",
fr: "Pression de Garde",
es: "Presión de Guardia",
it: "Pressadifesa",
pt: "Aperto Protetor",
de: "Schutzdruck"
},
effect: {
en: "During your opponents next turn, this Pokémon takes 30 less damage from attacks (after applying Weakness and Resistance).",
fr: "Pendant le prochain tour de votre adversaire, ce Pokémon subit 30 dégâts de moins provenant des attaques (après application de la Faiblesse et de la Résistance).",
es: "Durante el próximo turno de tu rival, los ataques hacen 30 puntos de daño menos a este Pokémon (después de aplicar Debilidad y Resistencia).",
it: "Durante il prossimo turno del tuo avversario, questo Pokémon subisce 30 danni in meno dagli attacchi, dopo aver applicato debolezza e resistenza.",
pt: "Durante o próximo turno do seu oponente, este Pokémon receberá 30 pontos de dano a menos de ataques (depois de aplicar Fraqueza e Resistência).",
de: "Während des nächsten Zuges deines Gegners werden diesem Pokémon durch Attacken 30 Schadenspunkte weniger zugefügt (nachdem Schwäche und Resistenz verrechnet wurden)."
},
damage: 100,
cost: ["Metal", "Colorless", "Colorless"]
}, {
name: {
en: "Seismic Rift",
fr: "Faille Sismique",
es: "Grieta Sísmica",
it: "Frattura Sismica",
pt: "Fissura Sísmica",
de: "Seismischer Bruch"
},
effect: {
en: "This attack also does 30 damage to each of your Pokémon. (Dont apply Weakness and Resistance for Benched Pokémon.)",
fr: "Cette attaque inflige aussi 30 dégâts à chacun de vos Pokémon. (Nappliquez ni la Faiblesse ni la Résistance aux Pokémon de Banc.)",
es: "Este ataque también hace 30 puntos de daño a cada uno de tus Pokémon. (No apliques Debilidad y Resistencia a los Pokémon en Banca).",
it: "Questo attacco infligge anche 30 danni a ciascuno dei tuoi Pokémon. Non applicare debolezza e resistenza ai Pokémon in panchina.",
pt: "Este ataque também causa 30 pontos de dano a cada um dos seus Pokémon (não aplique Fraqueza e Resistência aos Pokémon no Banco).",
de: "Diese Attacke fügt auch jedem deiner Pokémon 30 Schadenspunkte zu. (Wende Schwäche und Resistenz bei Pokémon auf der Bank nicht an.)"
},
damage: 240,
cost: ["Metal", "Metal", "Colorless", "Colorless"]
}],
weaknesses: [{
type: "Fire",
value: "×2"
}],
resistances: [{
type: "Grass",
value: "-30"
}],
retreat: 4,
regulationMark: "E",
variants: {
normal: true,
reverse: true,
holo: false,
firstEdition: false
}
}
export default card