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/Primal Clash/80.ts
Normal file
73
data/XY/Primal Clash/80.ts
Normal file
@ -0,0 +1,73 @@
|
||||
import { Card } from '../../../interfaces'
|
||||
import Set from '../Primal Clash'
|
||||
|
||||
const card: Card = {
|
||||
name: {
|
||||
en: "Medicham",
|
||||
fr: "Charmina",
|
||||
},
|
||||
illustrator: "Akira Komayama",
|
||||
rarity: "Rare",
|
||||
category: "Pokemon",
|
||||
|
||||
set: Set,
|
||||
dexId: [
|
||||
308,
|
||||
],
|
||||
hp: 100,
|
||||
types: [
|
||||
"Fightning",
|
||||
],
|
||||
evolveFrom: {
|
||||
en: "Meditite",
|
||||
fr: "Méditikka",
|
||||
},
|
||||
stage: "Stage1",
|
||||
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
"Fightning",
|
||||
],
|
||||
name: {
|
||||
en: "Pure Power",
|
||||
fr: "Force Pure",
|
||||
},
|
||||
effect: {
|
||||
en: "Put 4 damage counters on your opponent's Pokémon in any way you like.",
|
||||
fr: "Placez 4 marqueurs de dégâts sur les Pokémon de votre adversaire, de la manière que vous voulez.",
|
||||
},
|
||||
|
||||
},
|
||||
{
|
||||
cost: [
|
||||
"Fightning",
|
||||
"Colorless",
|
||||
],
|
||||
name: {
|
||||
en: "Windmill Kick",
|
||||
fr: "Coup d'Pied Éolien",
|
||||
},
|
||||
effect: {
|
||||
en: "Your opponent's Active Pokémon is now Confused.",
|
||||
fr: "Le Pokémon Actif de votre adversaire est maintenant Confus.",
|
||||
},
|
||||
damage: 60,
|
||||
|
||||
},
|
||||
],
|
||||
weaknesses: [
|
||||
{
|
||||
type: "Psychic",
|
||||
value: "×2"
|
||||
},
|
||||
],
|
||||
|
||||
retreat: 2,
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user