1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-29 02:59:53 +00:00

76 lines
905 B
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 '../POP Series 1'
const card: Card = {
name: {
en: "Armaldo ex",
},
illustrator: "Hikaru Koike",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
348,
],
hp: 160,
types: [
"Fightning",
],
evolveFrom: {
en: "Anorith",
},
stage: "Stage2",
attacks: [
{
cost: [
"Fightning",
"Colorless",
],
name: {
en: "Twin Blade",
},
effect: {
en: "Does 30 damage to each Defending Pokémon.",
},
},
{
cost: [
"Fightning",
"Fightning",
"Fightning",
"Colorless",
"Colorless",
],
name: {
en: "Supersonic Claws",
},
effect: {
en: "This attack's damage is not affected by Resistance.",
},
damage: 80,
},
],
weaknesses: [
{
type: "Grass",
value: "×2"
},
{
type: "Water",
value: "×2"
},
],
}
export default card