1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-09 02:37:50 +00:00

78 lines
1.3 KiB
TypeScript
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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 '../Team Up'
const card: Card = {
name: {
en: "Aegislash",
fr: "Exagide",
},
illustrator: "Kagemaru Himeno",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
681,
],
hp: 140,
types: [
"Metal",
],
evolveFrom: {
en: "Doublade",
fr: "Dimoclès",
},
stage: "Stage2",
abilities: [
{
type: "Ability",
name: {
en: "Royal Guard",
fr: "Barrière Royale",
},
effect: {
en: "This Pokémon takes 40 less damage from attacks (after applying Weakness and Resistance).",
fr: "Ce Pokémon subit 40 dégâts de moins provenant des attaques (après application de la Faiblesse et de la Résistance).",
},
},
],
attacks: [
{
cost: [
"Metal",
"Colorless",
"Colorless",
],
name: {
en: "Shield Bash",
fr: "Brusque Parade",
},
effect: {
en: "This attack's damage isn't affected by any effects on your opponent's Active Pokémon.",
fr: "Les dégâts de cette attaque ne sont affectés par aucun effet en action sur le Pokémon Actif de votre adversaire.",
},
damage: 100,
},
],
weaknesses: [
{
type: "Fire",
value: "×2"
},
],
resistances: [
{
type: "Psychic",
value: "-20"
},
],
retreat: 3,
}
export default card