1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-20 07: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

48 lines
771 B
TypeScript

import { Card } from "../../../interfaces"
import Set from "../Genetic Apex"
const card: Card = {
set: Set,
name: {
en: "Nidoqueen"
},
illustrator: "nagimiso",
category: "Pokemon",
hp: 140,
types: ["Darkness"],
stage: "Stage2",
evolveFrom: {
en: "Nidorina"
},
attacks: [{
cost: ["Darkness", "Darkness", "Colorless"],
name: {
en: "Lovestrike"
},
effect: {
en: "This attack does 50 more damage for each of your Benched Nidoking"
},
damage: "80+"
}],
weaknesses: [{
type: "Fighting",
value: "+20"
}],
retreat: 2,
rarity: "Three Diamond",
description: {
en: "Nidoqueen is better at defense than offense. With scales like armor, this Pokémon will shield its children from any kind of attack.",
}
}
export default card