1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-17 18:09:19 +00:00
Files
cards-database/data/Pokémon TCG Pocket/Genetic Apex/119.ts
2025-02-19 21:52:42 +01:00

45 lines
659 B
TypeScript

import { Card } from "../../../interfaces"
import Set from "../Genetic Apex"
const card: Card = {
set: Set,
name: {
en: "Slowbro"
},
illustrator: "Kogemaru Himeno",
category: "Pokemon",
hp: 130,
types: ["Psychic"],
stage: "Stage1",
evolveFrom: {
en: "Slowpoke"
},
attacks: [{
cost: ["Psychic", "Psychic", "Colorless"],
name: {
en: "Super Psy Bolt"
},
damage: "80"
}],
weaknesses: [{
type: "Darkness",
value: "+20"
}],
retreat: 3,
rarity: "Two Diamond",
description: {
en: "When a Slowpoke went hunting in the sea, its tail was bitten by a Shellder. That made it evolve into Slowbro.",
}
}
export default card