mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-07-30 19:40:48 +00:00
Finished Complete Rework of the Database
This commit is contained in:
76
data/Platinum/Rising Rivals/10.ts
Normal file
76
data/Platinum/Rising Rivals/10.ts
Normal file
@ -0,0 +1,76 @@
|
||||
import { Card } from '../../../interfaces'
|
||||
import Set from '../Rising Rivals'
|
||||
|
||||
const card: Card = {
|
||||
name: {
|
||||
en: "Mismagius GL",
|
||||
fr: "Magirêve Niv. 26",
|
||||
},
|
||||
illustrator: "Naoyo Kimura",
|
||||
rarity: "Rare",
|
||||
category: "Pokemon",
|
||||
|
||||
set: Set,
|
||||
dexId: [
|
||||
429,
|
||||
],
|
||||
hp: 80,
|
||||
types: [
|
||||
"Psychic",
|
||||
],
|
||||
|
||||
stage: "Basic",
|
||||
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
"Psychic",
|
||||
],
|
||||
name: {
|
||||
en: "Psychic Removal",
|
||||
fr: "Psycho-suppression",
|
||||
},
|
||||
effect: {
|
||||
en: "Flip 2 coins. If both of them are heads, discard all Energy attached to the Defending Pokémon.",
|
||||
fr: "Lancez 2 pièces. Si ce sont 2 faces, défaussez toute l'Énergie attachée au Pokémon Défenseur.",
|
||||
},
|
||||
damage: 10,
|
||||
|
||||
},
|
||||
{
|
||||
cost: [
|
||||
"Psychic",
|
||||
"Colorless",
|
||||
],
|
||||
name: {
|
||||
en: "Grudge",
|
||||
fr: "Rancune",
|
||||
},
|
||||
effect: {
|
||||
en: "Does 20 damage plus 10 more damage for each Prize card your opponent has taken.",
|
||||
fr: "Inflige 20 dégâts plus 10 dégâts supplémentaires pour chaque carte Récompense que votre adversaire a récolté.",
|
||||
},
|
||||
damage: 20,
|
||||
|
||||
},
|
||||
],
|
||||
weaknesses: [
|
||||
{
|
||||
type: "Darkness",
|
||||
value: "×2"
|
||||
},
|
||||
],
|
||||
resistances: [
|
||||
{
|
||||
type: "Colorless",
|
||||
value: "-20"
|
||||
},
|
||||
],
|
||||
retreat: 1,
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user