1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-29 19:09:54 +00:00
Khaleeq Ahmad a597759d9d
fix: Pocket card data fixes (#659)
Co-authored-by: Khaleeq Ahmad <1710642+khaleeqahmad@users.noreply.github.com>
2025-02-19 21:52:42 +01:00

41 lines
640 B
TypeScript

import { Card } from "../../../interfaces"
import Set from "../Mythical Island"
const card: Card = {
set: Set,
name: {
en: "Stonjourner"
},
illustrator: "Teeziro",
category: "Pokemon",
hp: 120,
types: ["Fighting"],
description: {
en: "The elemental composition of the rocks that form its body were found to match the bedrock of a land far away from this Pokémon's habitat."
},
stage: "Basic",
attacks: [{
name: {
en: "Mega Kick"
},
damage: 90,
cost: ["Fighting", "Fighting", "Fighting"]
}],
weaknesses: [{
type: "Grass",
value: "+20"
}],
retreat: 3,
rarity: "Two Diamond"
}
export default card