tambetm / gym-minecraft

Minecraft environment for Open AI Gym, based on Microsoft's Malmo.
272 stars 29 forks source link

In there any enemy present in MinecraftBasic-v0 ?? #23

Closed adil25 closed 5 years ago

adil25 commented 5 years ago

Fist of all, excuse me for asking a question in the shape of an issue, In MinecraftBasic-v0 the agent needs to touch the target block in partially observable environment where there is no lava. My question is that is there any enemy in that grey room where the agent need to touch the target block. Please how can i find a detail information about MinecraftBasic-v0 such as enemy, food, Air, life, Damage taken, Damage Dealt etc etc etc. I will be thankful if someone replies with a little detail to my question.

tambetm commented 5 years ago

MinecraftBasic-v0 contains no enemies. All Malmö missions are described using XML files, see the file for MinecraftBasic-v0. In particular this mission uses ClassroomDecorator to generate rooms. If you want more control over the world contents, DrawingDecorator allows you to produce any world you want, including placing enemies. The links above are to XML schema documentation. While it can be confusing and hard to read, I'm not aware of any better documentation. Example missions distributed with Malmö are also good source of hints.

adil25 commented 5 years ago

@tambetm ok, Thanks