mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-18 18:29:19 +00:00
feat: add Celestial Guardians (#716)
This commit is contained in:
48
data/Pokémon TCG Pocket/Celestial Guardians/101.ts
Normal file
48
data/Pokémon TCG Pocket/Celestial Guardians/101.ts
Normal file
@ -0,0 +1,48 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Celestial Guardians"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Lycanroc"
|
||||
},
|
||||
|
||||
illustrator: "5ban Graphics",
|
||||
rarity: "Three Diamond",
|
||||
category: "Pokemon",
|
||||
hp: 100,
|
||||
types: ["Fighting"],
|
||||
|
||||
evolveFrom: {
|
||||
en: "Rockruff"
|
||||
},
|
||||
|
||||
description: {
|
||||
en: "This Pokémon uses its rocky mane to slash any who approach. It will even disobey its Trainer if it dislikes the orders it was given."
|
||||
},
|
||||
|
||||
stage: "Stage1",
|
||||
|
||||
attacks: [{
|
||||
name: {
|
||||
en: "Blood Fang"
|
||||
},
|
||||
|
||||
damage: 50,
|
||||
cost: ["Fighting", "Fighting"],
|
||||
|
||||
effect: {
|
||||
en: "If your opponent's Active Pokémon has more remaining HP than this Pokémon, this attack does 50 more damage."
|
||||
}
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: "Grass",
|
||||
value: "+20"
|
||||
}],
|
||||
|
||||
retreat: 1
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user