1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-20 23:29:55 +00:00

84 lines
1.2 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 '../Crimson Invasion'
const card: Card = {
name: {
en: "Aggron",
fr: "Galeking",
},
illustrator: "Yoshinobu Saito",
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: "Revenge Cannon",
fr: "Canon Talion",
},
effect: {
en: "This attack does 10 more damage for each damage counter on all of your Benched Pokémon.",
fr: "Cette attaque inflige 10 dégâts supplémentaires pour chaque marqueur de dégâts placé sur vos Pokémon de Banc.",
},
damage: 10,
},
{
cost: [
"Metal",
"Metal",
"Colorless",
"Colorless",
],
name: {
en: "Buster Swing",
fr: "Repoussoir",
},
effect: {
en: "This attack's damage isn't affected by Resistance.",
fr: "Les dégâts de cette attaque ne sont pas affectés par la Résistance.",
},
damage: 120,
},
],
weaknesses: [
{
type: "Fire",
value: "×2"
},
],
resistances: [
{
type: "Psychic",
value: "-20"
},
],
retreat: 4,
}
export default card