1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-23 03:12:10 +00:00

78 lines
1.0 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 '../Ruby & Sapphire'
const card: Card = {
name: {
en: "Aron",
fr: "Galekid",
de: "Stollunior"
},
illustrator: "Midori Harada",
rarity: "Uncommon",
category: "Pokemon",
set: Set,
dexId: [
304,
],
hp: 50,
types: [
"Metal",
],
stage: "Basic",
attacks: [
{
cost: [
"Metal",
],
name: {
en: "Rollout",
fr: "Roulade",
de: "Rollout"
},
damage: 10,
},
{
cost: [
"Colorless",
"Colorless",
],
name: {
en: "Double Stab",
fr: "Coup double",
de: "Double Stab"
},
effect: {
en: "Flip 2 coins. This attack does 20 damage times the number of heads.",
fr: "Lancez deux pièces. Cette attaque inflige 20 dégâts multipliés par le nombre de face.",
de: "Flip 2 coins. This attack does 20 damage times the number of heads."
},
damage: "20x",
},
],
weaknesses: [
{
type: "Fire",
value: "×2"
},
],
resistances: [
{
type: "Grass",
value: "-30"
},
],
}
export default card