mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 03:12:10 +00:00
22 lines
476 B
TypeScript
22 lines
476 B
TypeScript
import { Card } from "../../../interfaces"
|
|
import Set from "../SV5s"
|
|
|
|
const card: Card = {
|
|
set: Set,
|
|
|
|
name: {
|
|
id: "Rimba Berbahaya"
|
|
},
|
|
|
|
illustrator: "AYUMI ODASHIMA",
|
|
category: "Trainer",
|
|
|
|
effect: {
|
|
id: "Jumlah Token Kerusakan yang diletakkan akibat kondisi Racun pada semua Pokémon (selain Pokémon {Kegelapan}) kedua pemain yang mengalami kondisi Racun masing-masing bertambah sejumlah 2."
|
|
},
|
|
|
|
trainerType: "Stadium",
|
|
regulationMark: "H"
|
|
}
|
|
|
|
export default card |