mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 19:32:11 +00:00
77 lines
991 B
TypeScript
77 lines
991 B
TypeScript
import { Card } from '../../../interfaces'
|
||
import Set from '../Legend Maker'
|
||
|
||
const card: Card = {
|
||
name: {
|
||
en: "Aron",
|
||
fr: "Galekid",
|
||
de: "Stollunior"
|
||
},
|
||
illustrator: "Miki Tanaka",
|
||
rarity: "Common",
|
||
category: "Pokemon",
|
||
|
||
set: Set,
|
||
dexId: [
|
||
304,
|
||
],
|
||
hp: 50,
|
||
types: [
|
||
"Metal",
|
||
],
|
||
|
||
stage: "Basic",
|
||
|
||
|
||
attacks: [
|
||
{
|
||
cost: [
|
||
"Colorless",
|
||
],
|
||
name: {
|
||
en: "Self Charge",
|
||
fr: "Auto-chargement",
|
||
de: "Selbstaufladung"
|
||
},
|
||
effect: {
|
||
en: "Attach a Metal Energy card from your hand to Aron.",
|
||
fr: "Attachez une carte Énergie de votre main à Galekid.",
|
||
de: "Lege eine -Energiekarte von deiner Hand an Stollunior an."
|
||
},
|
||
|
||
},
|
||
{
|
||
cost: [
|
||
"Metal",
|
||
"Colorless",
|
||
],
|
||
name: {
|
||
en: "Headbutt",
|
||
fr: "Coup d'boule",
|
||
de: "Kopfnuss"
|
||
},
|
||
|
||
damage: 20,
|
||
|
||
},
|
||
],
|
||
weaknesses: [
|
||
{
|
||
type: "Fire",
|
||
value: "×2"
|
||
},
|
||
],
|
||
resistances: [
|
||
{
|
||
type: "Grass",
|
||
value: "-30"
|
||
},
|
||
],
|
||
|
||
|
||
|
||
|
||
}
|
||
|
||
export default card
|