mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-15 17:09:19 +00:00
Finished Complete Rework of the Database
This commit is contained in:
65
data/Sword & Shield/Rebel Clash/98.ts
Normal file
65
data/Sword & Shield/Rebel Clash/98.ts
Normal file
@ -0,0 +1,65 @@
|
||||
import { Card } from '../../../interfaces'
|
||||
import Set from '../Rebel Clash'
|
||||
|
||||
const card: Card = {
|
||||
name: {
|
||||
en: "Medicham",
|
||||
},
|
||||
illustrator: "Suwama Chiaki",
|
||||
rarity: "Uncommon",
|
||||
category: "Pokemon",
|
||||
|
||||
set: Set,
|
||||
|
||||
|
||||
|
||||
evolveFrom: {
|
||||
en: "Meditite",
|
||||
},
|
||||
|
||||
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
"Fightning",
|
||||
],
|
||||
name: {
|
||||
en: "Yoga Kick",
|
||||
},
|
||||
effect: {
|
||||
en: "This attack’s damage isn’t affected by Weakness or Resistance.",
|
||||
},
|
||||
damage: 40,
|
||||
|
||||
},
|
||||
{
|
||||
cost: [
|
||||
"Colorless",
|
||||
"Colorless",
|
||||
"Colorless",
|
||||
],
|
||||
name: {
|
||||
en: "Psychic",
|
||||
},
|
||||
effect: {
|
||||
en: "This attack does 20 more damage for each Energy attached to your opponent’s Active Pokémon.",
|
||||
},
|
||||
damage: "60+",
|
||||
|
||||
},
|
||||
],
|
||||
weaknesses: [
|
||||
{
|
||||
type: "Psychic",
|
||||
value: "×2"
|
||||
},
|
||||
],
|
||||
|
||||
retreat: 1,
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user