mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-30 14:52:09 +00:00
* Added to interface * Added Regulation mark to all current cards * Ready for merge
54 lines
865 B
TypeScript
54 lines
865 B
TypeScript
import { Card } from '../../../interfaces'
|
||
import Set from '../Shining Fates'
|
||
|
||
const card: Card = {
|
||
set: Set,
|
||
|
||
name: {
|
||
fr: "Morpeko",
|
||
en: "Morpeko"
|
||
},
|
||
|
||
illustrator: "Hideki Ishikawa",
|
||
rarity: "Common",
|
||
category: "Pokemon",
|
||
hp: 80,
|
||
types: ["Lightning"],
|
||
|
||
attacks: [{
|
||
name: {
|
||
fr: "Glouton",
|
||
en: "Famished"
|
||
},
|
||
|
||
effect: {
|
||
fr: "Piochez une carte.",
|
||
en: "Draw a card."
|
||
},
|
||
|
||
cost: ["Colorless"]
|
||
}, {
|
||
name: {
|
||
fr: "Éclair",
|
||
en: "Thunder Shock"
|
||
},
|
||
|
||
effect: {
|
||
fr: "Lancez une pièce. Si c’est face, le Pokémon Actif de votre adversaire est maintenant Paralysé.",
|
||
en: "Flip a coin. If heads, your opponent’s Active Pokémon is now Paralyzed."
|
||
},
|
||
|
||
damage: 40,
|
||
cost: ["Lightning", "Colorless"]
|
||
}],
|
||
|
||
weaknesses: [{
|
||
type: "Fighting",
|
||
value: "×2"
|
||
}],
|
||
|
||
retreat: 1,
|
||
regulationMark: "D"
|
||
}
|
||
|
||
export default card |