mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-16 01:19:18 +00:00
Finished Complete Rework of the Database
This commit is contained in:
75
data/Sun & Moon/Celestial Storm/95.ts
Normal file
75
data/Sun & Moon/Celestial Storm/95.ts
Normal file
@ -0,0 +1,75 @@
|
||||
import { Card } from '../../../interfaces'
|
||||
import Set from '../Celestial Storm'
|
||||
|
||||
const card: Card = {
|
||||
name: {
|
||||
en: "Metagross",
|
||||
fr: "Métalosse",
|
||||
},
|
||||
illustrator: "TOKIYA",
|
||||
rarity: "Rare",
|
||||
category: "Pokemon",
|
||||
|
||||
set: Set,
|
||||
dexId: [
|
||||
376,
|
||||
],
|
||||
hp: 170,
|
||||
types: [
|
||||
"Metal",
|
||||
],
|
||||
evolveFrom: {
|
||||
en: "Metang",
|
||||
fr: "Métang",
|
||||
},
|
||||
stage: "Stage2",
|
||||
|
||||
abilities: [
|
||||
{
|
||||
type: "Ability",
|
||||
name: {
|
||||
en: "Extend",
|
||||
fr: "Prolongement",
|
||||
},
|
||||
effect: {
|
||||
en: "As long as this Pokémon is your Active Pokémon, your turn does not end when you play Steven's Resolve.",
|
||||
fr: "Tant que ce Pokémon est votre Pokémon Actif, votre tour ne se termine pas lorsque vous jouez Résolution de Pierre.",
|
||||
},
|
||||
},
|
||||
],
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
"Metal",
|
||||
],
|
||||
name: {
|
||||
en: "Meteor Mash",
|
||||
fr: "Poing Météore",
|
||||
},
|
||||
effect: {
|
||||
en: "During your next turn, this Pokémon's Meteor Mash attack does 60 more damage (before applying Weakness and Resistance).",
|
||||
fr: "Pendant votre prochain tour, l’attaque Poing Météore de ce Pokémon inflige 60 dégâts supplémentaires (avant application de la Faiblesse et de la Résistance).",
|
||||
},
|
||||
damage: 60,
|
||||
|
||||
},
|
||||
],
|
||||
weaknesses: [
|
||||
{
|
||||
type: "Fire",
|
||||
value: "×2"
|
||||
},
|
||||
],
|
||||
resistances: [
|
||||
{
|
||||
type: "Psychic",
|
||||
value: "-20"
|
||||
},
|
||||
],
|
||||
retreat: 4,
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user