mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-13 08:19:17 +00:00
Finished Complete Rework of the Database
This commit is contained in:
80
data/XY/Primal Clash/153.ts
Normal file
80
data/XY/Primal Clash/153.ts
Normal file
@ -0,0 +1,80 @@
|
||||
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
|
Reference in New Issue
Block a user