1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-30 23:02:09 +00:00

81 lines
1.2 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 '../Primal Clash'
const card: Card = {
name: {
en: "Aggron-EX",
fr: "Galeking-EX",
},
illustrator: "Ryo Ueda",
rarity: "Ultra Rare",
category: "Pokemon",
set: Set,
dexId: [
306,
],
hp: 180,
types: [
"Metal",
],
suffix: "EX",
attacks: [
{
cost: [
"Metal",
"Colorless",
"Colorless",
],
name: {
en: "Steel Headbutt",
fr: "Coup d'Boule d'Acier",
},
effect: {
en: "Flip a coin. If heads, this attack does 30 more damage.",
fr: "Lancez une pièce. Si c'est face, cette attaque inflige 30 dégâts supplémentaires.",
},
damage: 50,
},
{
cost: [
"Metal",
"Metal",
"Colorless",
"Colorless",
],
name: {
en: "Raging Hammer",
fr: "Marteau Rageur",
},
effect: {
en: "This attack does 10 more damage for each damage counter on this Pokémon.",
fr: "Cette attaque inflige 10 dégâts supplémentaires pour chaque marqueur de dégâts placé sur ce Pokémon.",
},
damage: 60,
},
],
weaknesses: [
{
type: "Fire",
value: "×2"
},
],
resistances: [
{
type: "Psychic",
value: "-20"
},
],
retreat: 4,
}
export default card