Updated Scripts (markdown)

Daniel Saukel 2016-05-17 01:25:52 +02:00
parent 307f8d8df4
commit a708352f66

@ -11,16 +11,91 @@ _Scripts_ are an upcoming feature in DungeonsXL 0.12.
***
## Announcements
_TO DO_
```
identifier: TEST
multiFloor: false
maxGroupsPerGame: 4
maxPlayersPerGroup: 4
```
## Classes
_TO DO_
```
items:
- 261,1
- 262,128
- 268,1
- 298,1
- 299,1
- 300,1
- 301,1
- 364,3
- 363,10
dog: true
```
## Items
_TO DO_
_Upcoming_
## Mobs
_TO DO_
```
# Type of the Mob
type: Skeleton
# Health
maxHealth: 100
# Head-item
itemHelmet: 310
# Chest-item
itemChestplate: 310
# Legging-item
itemLeggings: 310
#Feet-item
itemBoots: 310
# Hand-item
itemHand: 310
# If the Mob is a Wither skeleton (only available if Type: Skeleton)
isWitherSkeleton: true
# Which type of Ocelot an Ocelot is (only available if Type: Ocelot) // BLACK_CAT, RED_CAT, SIAMESE_CAT, WILD_OCELOT
ocelotType: BLACK_CAT
# Items that are dropped by the Mob upon death
drops:
1:
# Item-Id
id: 35
# Item-Data (As sample for colored wool)
data: 9
# Count (default 1)
amount: 2
# Enchantments
enchantments:
# Enchantment + Level
- DAMAGE_ALL 2
- DURABILITY 10
# Item name
name: 'The wool'
# Item description (Split multiple lines with '//')
lore: 'Finest wool!//Very fine!'
# Drop Chance (0-100) (default 100)
chance: 50
2:
id: 276
enchantments:
- DAMAGE_ALL 5
- DURABILITY 10
name: 'Destroyer'
lore: '10 Dmg'
```
## Signs
_TO DO_
```
0:
- "[Mob]"
- "Zombie"
- "4,4"
- "D 4"
1:
- "[Mob]"
- "Spider"
- "0,1"
- "D 4"
```