mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-18 10:19:18 +00:00
feat: add Celestial Guardians (#716)
This commit is contained in:
48
data/Pokémon TCG Pocket/Celestial Guardians/173.ts
Normal file
48
data/Pokémon TCG Pocket/Celestial Guardians/173.ts
Normal file
@ -0,0 +1,48 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Celestial Guardians"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Mudsdale"
|
||||
},
|
||||
|
||||
illustrator: "Teeziro",
|
||||
rarity: "One Star",
|
||||
category: "Pokemon",
|
||||
hp: 140,
|
||||
types: ["Fighting"],
|
||||
|
||||
evolveFrom: {
|
||||
en: "Mudbray"
|
||||
},
|
||||
|
||||
description: {
|
||||
en: "This Pokémon has been treasured not just for its physical labor but also because it produces high-quality mud used for making pottery."
|
||||
},
|
||||
|
||||
stage: "Stage1",
|
||||
|
||||
attacks: [{
|
||||
name: {
|
||||
en: "High Horsepower"
|
||||
},
|
||||
|
||||
damage: 140,
|
||||
cost: ["Fighting", "Fighting", "Fighting", "Colorless"],
|
||||
|
||||
effect: {
|
||||
en: "This Pokémon also does 40 damage to itself."
|
||||
}
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: "Grass",
|
||||
value: "+20"
|
||||
}],
|
||||
|
||||
retreat: 4
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user