mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-06 21:39:55 +00:00
45 lines
612 B
TypeScript
45 lines
612 B
TypeScript
import { Card } from "../../../interfaces"
|
|
import Set from "../Extradimensional Crisis"
|
|
|
|
const card: Card = {
|
|
set: Set,
|
|
|
|
name: {
|
|
en: "Lycanroc ex"
|
|
},
|
|
|
|
illustrator: "PLANETA CG Works",
|
|
rarity: "Four Diamond",
|
|
category: "Pokemon",
|
|
hp: 150,
|
|
types: ["Fighting"],
|
|
|
|
evolveFrom: {
|
|
en: "Rockruff"
|
|
},
|
|
|
|
stage: "Stage1",
|
|
suffix: "EX",
|
|
|
|
attacks: [{
|
|
name: {
|
|
en: "Lycanfang"
|
|
},
|
|
|
|
damage: 130,
|
|
cost: ["Fighting", "Fighting", "Colorless"],
|
|
|
|
effect: {
|
|
en: "Discard a {F} Energy from this Pokémon."
|
|
}
|
|
}],
|
|
|
|
weaknesses: [{
|
|
type: "Grass",
|
|
value: "+20"
|
|
}],
|
|
|
|
retreat: 2
|
|
}
|
|
|
|
export default card |