mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-26 12:52:13 +00:00
* some fixes Signed-off-by: Avior <github@avior.me> * Some more changes Signed-off-by: Avior <github@avior.me> * u Signed-off-by: Avior <github@avior.me> * continuing update Signed-off-by: Avior <github@avior.me> * Finished ? Signed-off-by: Avior <github@avior.me> * Removed files that were not meant to be * Remoed even more files
57 lines
960 B
TypeScript
57 lines
960 B
TypeScript
import { Card } from '../../../interfaces'
|
|
import Set from '../SWSH Black Star Promos'
|
|
|
|
const card: Card = {
|
|
set: Set,
|
|
illustrator: "The Pokémon Company Art Team",
|
|
category: "Pokemon",
|
|
|
|
description: {
|
|
en: "It constantly gnaws on logs and rocks to whittle down its front teeth. It nests alongside water."
|
|
},
|
|
|
|
stage: "Basic",
|
|
|
|
variants: {
|
|
normal: false,
|
|
reverse: false,
|
|
holo: false,
|
|
firstEdition: false
|
|
},
|
|
|
|
name: {
|
|
en: "Special Delivery Bidoof"
|
|
},
|
|
|
|
rarity: "None",
|
|
hp: 70,
|
|
types: ["Colorless"],
|
|
|
|
attacks: [{
|
|
cost: ["Colorless"],
|
|
|
|
name: {
|
|
en: "Happy Delivery"
|
|
},
|
|
|
|
effect: {
|
|
en: "Search your deck for an Item card, reveal it, and put it into your hand. Then, shuffle your deck."
|
|
}
|
|
}, {
|
|
cost: ["Colorless", "Colorless", "Colorless"],
|
|
|
|
name: {
|
|
en: "Rock Smash"
|
|
},
|
|
|
|
damage: "30+",
|
|
|
|
effect: {
|
|
en: "Flip a coin. If heads, this attack does 30 more damage."
|
|
}
|
|
}],
|
|
|
|
regulationMark: "E"
|
|
}
|
|
|
|
export default card |