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:
73
data/XY/BREAKthrough/97.ts
Normal file
73
data/XY/BREAKthrough/97.ts
Normal file
@ -0,0 +1,73 @@
|
||||
import { Card } from '../../../interfaces'
|
||||
import Set from '../BREAKthrough'
|
||||
|
||||
const card: Card = {
|
||||
name: {
|
||||
en: "Mr. Mime",
|
||||
fr: "M. Mime",
|
||||
},
|
||||
illustrator: "kirisAki",
|
||||
rarity: "Rare",
|
||||
category: "Pokemon",
|
||||
|
||||
set: Set,
|
||||
dexId: [
|
||||
122,
|
||||
],
|
||||
hp: 70,
|
||||
types: [
|
||||
"Fairy",
|
||||
],
|
||||
|
||||
stage: "Basic",
|
||||
|
||||
abilities: [
|
||||
{
|
||||
type: "Ability",
|
||||
name: {
|
||||
en: "Bench Barrier",
|
||||
fr: "Barrière de Banc",
|
||||
},
|
||||
effect: {
|
||||
en: "Prevent all damage done to your Benched Pokémon by attacks.",
|
||||
fr: "Évitez tous les dégâts infligés à vos Pokémon de Banc par des attaques.",
|
||||
},
|
||||
},
|
||||
],
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
"Fairy",
|
||||
"Colorless",
|
||||
],
|
||||
name: {
|
||||
en: "Juggling",
|
||||
fr: "Jonglerie",
|
||||
},
|
||||
effect: {
|
||||
en: "Flip 4 coins. This attack does 10 damage times the number of heads.",
|
||||
fr: "Lancez 4 pièces. Cette attaque inflige 10 dégâts multipliés par le nombre de côtés face.",
|
||||
},
|
||||
damage: 10,
|
||||
|
||||
},
|
||||
],
|
||||
weaknesses: [
|
||||
{
|
||||
type: "Metal",
|
||||
value: "×2"
|
||||
},
|
||||
],
|
||||
resistances: [
|
||||
{
|
||||
type: "Darkness",
|
||||
value: "-20"
|
||||
},
|
||||
],
|
||||
retreat: 1,
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user