-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathWorldTemplate.lua
More file actions
148 lines (131 loc) · 3.15 KB
/
WorldTemplate.lua
File metadata and controls
148 lines (131 loc) · 3.15 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
--#region Model
RealityInfo = {
Dimensions = 2,
Name = 'ExampleReality',
['Render-With'] = '2D-Tile-0',
}
RealityParameters = {
['2D-Tile-0'] = {
Version = 0,
Spawn = { 5, 7 },
-- This is a tileset themed to Llama Land main island
Tileset = {
Type = 'Fixed',
Format = 'PNG',
TxId = 'CsrjNjjW64pNV4SsNGU_pD9sAOw-vuKMNZU25wTETow', -- TxId of the tileset in PNG format
},
-- This is a tilemap of sample small island
Tilemap = {
Type = 'Fixed',
Format = 'TMJ',
TxId = 'V_2CQtcV9MCKhSMNmRYAExf_fAieXTvHEWYNCQqqnrM', -- TxId of the tilemap in TMJ format
-- Since we are already setting the spawn in the middle, we don't need this
-- Offset = { -10, -10 },
},
},
}
RealityEntitiesStatic = {
['34Cz323LM-DiSSQuS1I3427ijVzIr7lPUbOTumOI600'] = {
Position = { 9, 8 },
Type = 'Avatar',
Metadata = {
DisplayName = 'Oracle Llama',
SpriteTxId = 'DI69VXAV5an_lsP3p8IpjYjhIw6ca0UpFG6OkoE7p1c',
Interaction = {
Type = 'SchemaExternalForm',
Id = 'AskOracleLlama'
},
},
},
-- ['Rp5lau6idhHLubV6g9OpZgy8Av0w4jZfBqSDCcHSObU'] = {
-- Position = { 4, 8 },
-- Type = 'Avatar',
-- Metadata = {
-- DisplayName = 'Llama Joker',
-- SkinNumber = 8,
-- Interaction = {
-- Type = 'SchemaExternalForm',
-- Id = 'MakeJoke'
-- },
-- },
-- },
['v3rSUIk3iGYVclXshyLlLZ9qhqdPljr68m0FDX7O0MM'] = {
Position = { 15, 15 },
Type = 'Avatar',
Metadata = {
DisplayName = 'Fantasy Llama',
SkinNumber = 9,
Interaction = {
Type = 'Default',
},
},
},
['zXYVgUHOn3caqEZuHj1ExSFQS0Y50S0prwP8U605rbo'] = {
Position = { 11, 17 },
Type = 'Avatar',
Metadata = {
DisplayName = 'Hodl Harry',
SkinNumber = 1,
Interaction = {
Type = 'Default',
},
},
},
['UcxESMLntdZ0qnIMZVvyXUoOTeYBumBpGonpYAAzm1c'] = {
Position = { 6, 18 },
Type = 'Avatar',
Metadata = {
DisplayName = 'Quantum Flunk',
SkinNumber = 3,
Interaction = {
Type = 'Default',
},
},
},
['kYPI76-D0A_ecwywReGvHjJHP62sChQcgnZd0dEbpMw'] = {
Position = { 4, 15 },
Type = 'Avatar',
Metadata = {
DisplayName = 'Existen-shell Dread',
SkinNumber = 2,
Interaction = {
Type = 'Default',
},
},
},
['q-hWcV7BjLkx8gmPKUBi0hezd2MDShMXMBZbeLE9EVQ'] = {
Position = { 5, 12 },
Type = 'Avatar',
Metadata = {
DisplayName = 'Meme-o Fired',
SkinNumber = 0,
Interaction = {
Type = 'Default',
},
},
},
['K6pMsPD56VL1Iw7p2tZ8v1GK3Z_PqZtOuVezr-9rLgA'] = {
Position = { 3, 8 },
Type = 'Avatar',
Metadata = {
DisplayName = 'Camel-not Crushed',
SkinNumber = 4,
Interaction = {
Type = 'Default',
},
},
},
['0f3fglGtRcMbNWOvSJwT2iMEWoSrXkEumFE0-xvM5NM'] = {
Position = { 14, 7 },
Type = 'Avatar',
Metadata = {
DisplayName = 'Gratitude Llamastery',
SkinNumber = 5,
Interaction = {
Type = 'Default',
},
},
},
}
--#endregion
return print("Loaded Reality Template")