1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-25 12:22:14 +00:00

55 lines
965 B
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import { Card } from "../../../interfaces"
import Set from "../SV6s"
const card: Card = {
set: Set,
name: {
id: "Rillaboom"
},
illustrator: "toriyufu",
category: "Pokemon",
hp: 180,
types: ["Grass"],
description: {
id: "Rillaboom mengontrol kekuatan tunggul pohon spesial dengan menabuhnya bagai drum. Pokémon ini bertarung dengan mengendalikan akar tumbuhan."
},
stage: "Stage2",
attacks: [{
name: {
id: "Drum Beating"
},
effect: {
id: "Pada giliran lawan berikutnya, Energi yang dibutuhkan oleh Pokémon yang menerima serangan ini untuk menggunakan serangan dan Mundur masing-masing bertambah 1 Energi {Bening}."
},
damage: 60,
cost: ["Grass"]
}, {
name: {
id: "Wood Hammer"
},
effect: {
id: "Pokémon ini juga menerima kerusakan sejumlah 50."
},
damage: 180,
cost: ["Grass", "Grass"]
}],
weaknesses: [{
type: "Fire",
value: "×2"
}],
retreat: 4,
regulationMark: "H"
}
export default card