â›Šī¸More Themes

Build Battle

This guide will show you how to add more themes.

First, go to the directory where your server files are located. From there, navigate through the following path: Setup\plugins\BuildBattle\.

Locate the themes.yml File

Inside the BuildBattle folder, find the themes.yml file. This file contains all the themes that can be used in the game.

Editing Themes

Open the themes.yml file using a text editor of your choice. Inside the file, you'll see a list of themes. You can perform the following actions:

  • Remove a Theme: Simply delete the line corresponding to the theme you want to remove.

  • Edit a Theme: Modify the text of an existing theme to change it.

  • Add a New Theme: Add a new line with the theme you want to introduce.

\plugins\BuildBattle\themes.yml
# Theme configuration

# All game themes players will build.
Themes:
  # Solo themes.
  Classic:
    - Robot
    - Heart
    - Castle
    - Emoji
    - House
    - Flower
    - Space Ship
    - Tree
    - Tower
    - Clock
    - Beach
    - Dinosaur
    - Ocean
    - Garden
    - Dragon
  # Team mode themes.
  Teams:
    - Well
    - Car
    - Rainbow
    - Arcade Machine
    - Roller Coaster
    - Airplane
    - Pirate Ship
    - Space Station
    - Underwater City
    - Amusement Park
    - Zoo
    - Airport
    - Volcano
    - Train Station
  # Guess the build themes.
  Guess-The-Build:
    Easy:
      - Apple
      - Sun
      - Bread
      - Book
      - Dollar
      - Star
      - Ice Cream
      - Dog
      - Fish
      - Balloon
      - Cake
      - Flag
      - Clock
      - Cloud
      - Tree
    Medium:
      - School Bus
      - Horse
      - Fountain
      - Sumo
      - Bicycle
      - Helicopter
      - Train
      - Piano
      - Castle
      - Treasure Chest
      - Rocket
      - Skateboard
      - Guitar
      - Submarine
      - Windmill
    Hard:
      - Soccer
      - Birthday Cake
      - Typewriter
      - Solar System
      - Eiffel Tower
      - Computer
      - Hot Air Balloon
      - Roller Coaster
      - Dinosaur
      - Lighthouse
      - Colosseum
      - Great Wall of China
      - Spaceship
      - Pyramid


# Special holiday themes
# that will be used during holiday events if enabled.
Holiday:
  AprilFools:
    - Hypercube
    - Nothing
    - Void
    - Minecraft
    - Mojang
  Valentine:
    - Heart
    - Love
    - Cupid
    - Chocolate Box
  Halloween:
    - Pumpkin
    - Skeleton
    - Jack'o'Lantern
    - Candies
  Christmas:
    - Santa
    - Presents
    - Snowman
    - Stocking
  NewYear:
    - Rocket
    - Firework
    - Party
    - Firecracker
    - Champagne

# Theme names that are blacklisted.
Blacklisted:
  - Fuck

Save Your Changes

  • After making your changes, save the themes.yml file.

  • Ensure there are no syntax errors or missing entries to avoid issues during gameplay.

Restart Your Server

  • To apply the changes, restart your Minecraft server.

Last updated