1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-26 12:52:13 +00:00
Florian Bouillon 2e18aa4aac
Sword & Shield Fixes (#84)
* some fixes

Signed-off-by: Avior <github@avior.me>

* Some more changes

Signed-off-by: Avior <github@avior.me>

* u

Signed-off-by: Avior <github@avior.me>

* continuing update

Signed-off-by: Avior <github@avior.me>

* Finished ?

Signed-off-by: Avior <github@avior.me>

* Removed files that were not meant to be

* Remoed even more files
2021-10-26 10:40:03 +02:00

109 lines
2.3 KiB
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

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 '../Darkness Ablaze'
const card: Card = {
name: {
en: "Aggron",
fr: "Galeking",
es: "Aggron",
it: "Aggron",
pt: "Aggron",
de: "Stolloss"
},
illustrator: "Hasuno",
rarity: "Rare",
category: "Pokemon",
set: Set,
hp: 160,
types: [
"Metal",
],
evolveFrom: {
en: "Lairon",
fr: "Galegon",
es: "Lairon",
it: "Lairon",
pt: "Lairon",
de: "Stollrak"
},
abilities: [
{
type: "Ability",
name: {
en: "Sturdy",
fr: "Fermeté",
es: "Robustez",
it: "Vigore",
pt: "Robustez",
de: "Robustheit"
},
effect: {
en: "If this Pokémon has full HP and would be Knocked Out by damage from an attack, it is not Knocked Out, and its remaining HP becomes 10.",
fr: "Si ce Pokémon a tous ses PV et doit être mis K.O. par les dégâts d'une attaque, il n'est pas mis K.O. et il lui reste 10 PV.",
es: "Si este Pokémon tiene todos sus PS y fuese a quedar Fuera de Combate por el daño de un ataque, no queda Fuera de Combate, y sus PS restantes pasan a ser 10.",
it: "Se questo Pokémon ha tutti i PS e sta per essere messo KO dai danni di un attacco, non viene messo KO e i suoi PS rimanenti diventano 10.",
pt: "Se este Pokémon tiver PS cheio e estiver prestes a ser Nocauteado pelo dano de um ataque, ele não será Nocauteado e o PS restante dele será 10.",
de: "Wenn dieses Pokémon volle KP hat und durch Schaden einer Attacke kampfunfähig würde, wird dieses Pokémon nicht kampfunfähig und seine verbleibenden KP sind gleich 10."
},
},
],
attacks: [
{
cost: [
"Metal",
"Colorless",
"Colorless",
"Colorless",
],
name: {
en: "Gigaton Stomp",
fr: "Écrasement Gigatonne",
es: "Pisotón Gigatón",
it: "Pestone Gigatonico",
pt: "Pisada Gigatônica",
de: "Gigatonnen-Stampfer"
},
damage: 160,
},
],
weaknesses: [
{
type: "Fire",
value: "×2"
},
],
resistances: [
{
type: "Grass",
value: "-30"
},
],
retreat: 3,
regulationMark: "D",
variants: {
normal: false,
reverse: true,
holo: true,
firstEdition: false
},
stage: "Stage2",
description: {
en: "While seeking iron for food, it digs tunnels by breaking through bedrock with its steel horns."
}
}
export default card