mirror of
https://github.com/DRE2N/DungeonsXL.git
synced 2024-11-28 21:48:43 +01:00
Updated Scripts (markdown)
parent
307f8d8df4
commit
a708352f66
85
Scripts.md
85
Scripts.md
@ -11,16 +11,91 @@ _Scripts_ are an upcoming feature in DungeonsXL 0.12.
|
|||||||
***
|
***
|
||||||
|
|
||||||
## Announcements
|
## Announcements
|
||||||
_TO DO_
|
```
|
||||||
|
identifier: TEST
|
||||||
|
multiFloor: false
|
||||||
|
maxGroupsPerGame: 4
|
||||||
|
maxPlayersPerGroup: 4
|
||||||
|
```
|
||||||
|
|
||||||
## Classes
|
## 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
|
## Items
|
||||||
_TO DO_
|
_Upcoming_
|
||||||
|
|
||||||
## Mobs
|
## 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
|
## Signs
|
||||||
_TO DO_
|
```
|
||||||
|
0:
|
||||||
|
- "[Mob]"
|
||||||
|
- "Zombie"
|
||||||
|
- "4,4"
|
||||||
|
- "D 4"
|
||||||
|
1:
|
||||||
|
- "[Mob]"
|
||||||
|
- "Spider"
|
||||||
|
- "0,1"
|
||||||
|
- "D 4"
|
||||||
|
```
|
Loading…
Reference in New Issue
Block a user