mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-18 02:19:17 +00:00
feat: add Celestial Guardians (#716)
This commit is contained in:
41
data/Pokémon TCG Pocket/Celestial Guardians/233.ts
Normal file
41
data/Pokémon TCG Pocket/Celestial Guardians/233.ts
Normal file
@ -0,0 +1,41 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Celestial Guardians"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Starmie ex"
|
||||
},
|
||||
|
||||
illustrator: "PLANETA Igarashi",
|
||||
rarity: "Two Shiny",
|
||||
category: "Pokemon",
|
||||
hp: 130,
|
||||
types: ["Water"],
|
||||
|
||||
evolveFrom: {
|
||||
en: "Staryu"
|
||||
},
|
||||
|
||||
stage: "Stage1",
|
||||
suffix: "EX",
|
||||
|
||||
attacks: [{
|
||||
name: {
|
||||
en: "Hydro Splash"
|
||||
},
|
||||
|
||||
damage: 90,
|
||||
cost: ["Water", "Water"]
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: "Lightning",
|
||||
value: "+20"
|
||||
}],
|
||||
|
||||
retreat: 0
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user