14 lines
359 B
Python
14 lines
359 B
Python
from tungston.generator.datapack.placement import Placement
|
|
from typing import Any
|
|
|
|
# Class ############################################################################################
|
|
|
|
class Biome(Placement):
|
|
|
|
def __init__(self):
|
|
super().__init__("minecraft:biome")
|
|
|
|
def asData(self) -> dict[str,Any]:
|
|
return { "type": self.gameId }
|
|
|