mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-14 16:39:18 +00:00
Finished Complete Rework of the Database
This commit is contained in:
89
data/XY/Roaring Skies/76.ts
Normal file
89
data/XY/Roaring Skies/76.ts
Normal file
@ -0,0 +1,89 @@
|
||||
import { Card } from '../../../interfaces'
|
||||
import Set from '../Roaring Skies'
|
||||
|
||||
const card: Card = {
|
||||
name: {
|
||||
en: "M Rayquaza-EX",
|
||||
fr: "M Rayquaza-EX",
|
||||
},
|
||||
illustrator: "5ban Graphics",
|
||||
rarity: "Rare",
|
||||
category: "Pokemon",
|
||||
|
||||
set: Set,
|
||||
dexId: [
|
||||
384,
|
||||
],
|
||||
hp: 220,
|
||||
types: [
|
||||
"Colorless",
|
||||
],
|
||||
evolveFrom: {
|
||||
en: "Rayquaza-EX",
|
||||
fr: "Rayquaza-EX",
|
||||
},
|
||||
stage: "MEGA",
|
||||
|
||||
abilities: [
|
||||
{
|
||||
type: "Ancient Trait",
|
||||
name: {
|
||||
fr: "Évolution Δ",
|
||||
},
|
||||
effect: {
|
||||
fr: "Vous pouvez jouer cette carte de votre main pour faire évoluer un Pokémon pendant votre premier tour ou pendant le tour où vous le jouez.",
|
||||
},
|
||||
},
|
||||
],
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
"Colorless",
|
||||
"Colorless",
|
||||
"Colorless",
|
||||
],
|
||||
name: {
|
||||
en: "Emerald Break",
|
||||
fr: "Règle des Méga-Évolutions",
|
||||
},
|
||||
effect: {
|
||||
en: "This attack does 30 damage times the number of your Benched Pokémon.",
|
||||
},
|
||||
damage: 30,
|
||||
|
||||
},
|
||||
{
|
||||
cost: [
|
||||
"Colorless",
|
||||
"Colorless",
|
||||
"Colorless",
|
||||
],
|
||||
name: {
|
||||
fr: "Bris'Émeraude",
|
||||
},
|
||||
effect: {
|
||||
fr: "Cette attaque inflige 30 dégâts multipliés par le nombre de vos Pokémon de Banc.",
|
||||
},
|
||||
damage: "30×",
|
||||
|
||||
},
|
||||
],
|
||||
weaknesses: [
|
||||
{
|
||||
type: "Lightning",
|
||||
value: "×2"
|
||||
},
|
||||
],
|
||||
resistances: [
|
||||
{
|
||||
type: "Fightning",
|
||||
value: "-20"
|
||||
},
|
||||
],
|
||||
retreat: 1,
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user