mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-13 00:09:18 +00:00
Finished Complete Rework of the Database
This commit is contained in:
65
data/XY/Fates Collide/69.ts
Normal file
65
data/XY/Fates Collide/69.ts
Normal file
@ -0,0 +1,65 @@
|
||||
import { Card } from '../../../interfaces'
|
||||
import Set from '../Fates Collide'
|
||||
|
||||
const card: Card = {
|
||||
name: {
|
||||
en: "M Altaria-EX",
|
||||
fr: "M-Altaria-EX",
|
||||
},
|
||||
illustrator: "5ban Graphics",
|
||||
rarity: "Rare",
|
||||
category: "Pokemon",
|
||||
|
||||
set: Set,
|
||||
dexId: [
|
||||
334,
|
||||
],
|
||||
hp: 220,
|
||||
types: [
|
||||
"Fairy",
|
||||
],
|
||||
evolveFrom: {
|
||||
en: "Altaria-EX",
|
||||
fr: "Altaria-EX",
|
||||
},
|
||||
stage: "MEGA",
|
||||
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
"Fairy",
|
||||
"Colorless",
|
||||
"Colorless",
|
||||
],
|
||||
name: {
|
||||
en: "Mist Purge",
|
||||
fr: "Nettoyage Brumeux",
|
||||
},
|
||||
effect: {
|
||||
en: "If this Pokémon has any Special Energy attached to it, this attack does 30 more damage and heal 30 damage from each of your Pokémon.",
|
||||
fr: "Si de l'Énergie spéciale est attachée à ce Pokémon, cette attaque inflige 30 dégâts supplémentaires et soigne 30 dégâts à chacun de vos Pokémon.",
|
||||
},
|
||||
damage: 100,
|
||||
|
||||
},
|
||||
],
|
||||
weaknesses: [
|
||||
{
|
||||
type: "Metal",
|
||||
value: "×2"
|
||||
},
|
||||
],
|
||||
resistances: [
|
||||
{
|
||||
type: "Darkness",
|
||||
value: "-20"
|
||||
},
|
||||
],
|
||||
retreat: 2,
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user