mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-14 00:29:19 +00:00
69
data/Sword & Shield/Fusion Strike/177.ts
Normal file
69
data/Sword & Shield/Fusion Strike/177.ts
Normal file
@ -0,0 +1,69 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Fusion Strike"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Morgrem",
|
||||
fr: "Fourbelin",
|
||||
es: "Morgrem",
|
||||
it: "Morgrem",
|
||||
pt: "Morgrem",
|
||||
de: "Pelzebub"
|
||||
},
|
||||
|
||||
rarity: "Uncommon",
|
||||
category: "Pokemon",
|
||||
hp: 90,
|
||||
types: ["Darkness"],
|
||||
|
||||
evolveFrom: {
|
||||
en: "Impidimp",
|
||||
fr: "Grimalin",
|
||||
es: "Impidimp",
|
||||
it: "Impidimp",
|
||||
pt: "Impidimp",
|
||||
de: "Bähmon"
|
||||
},
|
||||
|
||||
stage: "Stage1",
|
||||
retreat: 2,
|
||||
regulationMark: "E",
|
||||
illustrator: "tetsuya koizumi",
|
||||
|
||||
description: {
|
||||
en: "With sly cunning, it tries to lure people into the woods. Some believe it to have the power to make crops grow."
|
||||
},
|
||||
|
||||
attacks: [{
|
||||
cost: ["Darkness"],
|
||||
|
||||
name: {
|
||||
en: "Bite"
|
||||
},
|
||||
|
||||
damage: 20
|
||||
}, {
|
||||
cost: ["Darkness", "Darkness"],
|
||||
|
||||
name: {
|
||||
en: "Crushing Blow"
|
||||
},
|
||||
|
||||
damage: 40,
|
||||
|
||||
effect: {
|
||||
en: "Flip a coin. If heads, discard an Energy from your opponent's Active Pokémon."
|
||||
}
|
||||
}],
|
||||
|
||||
variants: {
|
||||
normal: true,
|
||||
reverse: true,
|
||||
holo: false,
|
||||
firstEdition: false
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user