mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 03:12:10 +00:00
22 lines
469 B
TypeScript
22 lines
469 B
TypeScript
import { Card } from '../../../interfaces'
|
|
import Set from '../Team Rocket Returns'
|
|
|
|
const card: Card = {
|
|
name: {
|
|
en: "Venture Bomb",
|
|
de: "Venture Bomb*"
|
|
},
|
|
|
|
illustrator: "Katsura Tabata",
|
|
rarity: "Uncommon",
|
|
category: "Trainer",
|
|
set: Set,
|
|
trainerType: "Rocket's Secret Machine",
|
|
|
|
effect: {
|
|
de: "Flip a coin. If heads, put 1 damage counter on 1 of your opponent's Pokémon. If tails, put 1 damage counter on 1 of your Pokémon."
|
|
}
|
|
}
|
|
|
|
export default card
|