mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-24 11:52:16 +00:00
76 lines
1.1 KiB
TypeScript
76 lines
1.1 KiB
TypeScript
import { Card } from '../../../interfaces'
|
||
import Set from '../Chilling Reign'
|
||
|
||
const card: Card = {
|
||
dexId: [304],
|
||
set: Set,
|
||
|
||
name: {
|
||
en: "Aron",
|
||
fr: "Galekid",
|
||
es: "Aron",
|
||
it: "Aron",
|
||
pt: "Aron",
|
||
de: "Stollunior"
|
||
},
|
||
|
||
illustrator: "Kyoko Umemoto",
|
||
rarity: "Common",
|
||
category: "Pokemon",
|
||
hp: 70,
|
||
types: ["Metal"],
|
||
|
||
attacks: [{
|
||
name: {
|
||
en: "Gnaw",
|
||
fr: "Ronge",
|
||
es: "Roer",
|
||
it: "Rosicchiamento",
|
||
pt: "Roída",
|
||
de: "Nagen"
|
||
},
|
||
|
||
damage: 20,
|
||
cost: ["Colorless", "Colorless"]
|
||
}, {
|
||
name: {
|
||
en: "Rolling Tackle",
|
||
fr: "Roulé-Boulé",
|
||
es: "Placaje Giro",
|
||
it: "Rollazione",
|
||
pt: "Golpe de Colisão Rolante",
|
||
de: "Rolltackle"
|
||
},
|
||
|
||
damage: 50,
|
||
cost: ["Metal", "Colorless", "Colorless"]
|
||
}],
|
||
|
||
weaknesses: [{
|
||
type: "Fire",
|
||
value: "×2"
|
||
}],
|
||
|
||
resistances: [{
|
||
type: "Grass",
|
||
value: "-30"
|
||
}],
|
||
|
||
retreat: 2,
|
||
regulationMark: "E",
|
||
|
||
variants: {
|
||
normal: true,
|
||
reverse: true,
|
||
holo: false,
|
||
firstEdition: false
|
||
},
|
||
|
||
stage: "Basic",
|
||
|
||
description: {
|
||
en: "When it evolves, it sheds the steel carapace that covered its whole body and develops a new one."
|
||
}
|
||
}
|
||
|
||
export default card |