Skip to content

Commit

Permalink
More presets?
Browse files Browse the repository at this point in the history
  • Loading branch information
NotMyWing committed Jun 21, 2019
1 parent dbaadb8 commit 7002f15
Show file tree
Hide file tree
Showing 10 changed files with 1,059 additions and 0 deletions.
93 changes: 93 additions & 0 deletions moonpanelPresets/tutorials/sun/sun1.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,93 @@
--@name sun1
--@include moonpanel/core/moonpanel.txt
--
-- AUTOMATICALLY DOWNLOADED & TRANSPILED BY MOONPANEL DOWNLOADER
--

tile = require "moonpanel/core/moonpanel.txt"

if SERVER then
cells = {
{
type = "Sun",
x = 1,
y = 1,
attributes = {
color = 9,
}
},
{
type = "Sun",
x = 3,
y = 3,
attributes = {
color = 9,
}
},
}

intersections = {
{
type = "Exit",
x = 2,
y = 1,
},
{
type = "Entrance",
x = 3,
y = 4,
},
}

vpaths = {
{
type = "Disjoint",
x = 1,
y = 1,
},
{
type = "Disjoint",
x = 4,
y = 1,
},
}

hpaths = {
{
type = "Disjoint",
x = 1,
y = 3,
},
{
type = "Disjoint",
x = 1,
y = 4,
},
{
type = "Disjoint",
x = 3,
y = 3,
},
}

tile:setup({
cells = cells,
vpaths = vpaths,
hpaths = hpaths,
intersections = intersections,
tile = {
width = 3,
height = 3,
innerScreenRatio = 0.8,
barWidth = 50
},
colors = {
solved = Color(220, 160, 0),
cell = Color(75, 80, 100),
background = Color(70, 70, 100),
vignette = Color(0, 0, 0, 16),
untraced = Color(10, 10, 40),
traced = Color(220, 220, 220)
}
})
end
116 changes: 116 additions & 0 deletions moonpanelPresets/tutorials/sun/sun10.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,116 @@
--@name sun10
--@include moonpanel/core/moonpanel.txt
--
-- AUTOMATICALLY DOWNLOADED & TRANSPILED BY MOONPANEL DOWNLOADER
--

tile = require "moonpanel/core/moonpanel.txt"

if SERVER then
cells = {
{
type = "Sun",
x = 1,
y = 1,
attributes = {
color = 9,
}
},
{
type = "Sun",
x = 1,
y = 2,
attributes = {
color = 9,
}
},
{
type = "Sun",
x = 1,
y = 3,
attributes = {
color = 9,
}
},
{
type = "Sun",
x = 1,
y = 4,
attributes = {
color = 9,
}
},
{
type = "Sun",
x = 2,
y = 1,
attributes = {
color = 9,
}
},
{
type = "Sun",
x = 2,
y = 4,
attributes = {
color = 9,
}
},
{
type = "Sun",
x = 3,
y = 1,
attributes = {
color = 9,
}
},
{
type = "Sun",
x = 4,
y = 1,
attributes = {
color = 9,
}
},
}

intersections = {
{
type = "Entrance",
x = 1,
y = 5,
},
{
type = "Exit",
x = 5,
y = 1,
},
}

vpaths = {
}

hpaths = {
}

tile:setup({
cells = cells,
vpaths = vpaths,
hpaths = hpaths,
intersections = intersections,
tile = {
width = 4,
height = 4,
innerScreenRatio = 0.825,
barWidth = 45
},
colors = {
solved = Color(220, 160, 0),
cell = Color(75, 80, 100),
background = Color(70, 70, 100),
vignette = Color(0, 0, 0, 16),
untraced = Color(10, 10, 40),
traced = Color(220, 220, 220)
}
})
end
108 changes: 108 additions & 0 deletions moonpanelPresets/tutorials/sun/sun2.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,108 @@
--@name sun2
--@include moonpanel/core/moonpanel.txt
--
-- AUTOMATICALLY DOWNLOADED & TRANSPILED BY MOONPANEL DOWNLOADER
--

tile = require "moonpanel/core/moonpanel.txt"

if SERVER then
cells = {
{
type = "Sun",
x = 1,
y = 4,
attributes = {
color = 9,
}
},
{
type = "Sun",
x = 4,
y = 1,
attributes = {
color = 9,
}
},
}

intersections = {
{
type = "Exit",
x = 3,
y = 1,
},
{
type = "Entrance",
x = 3,
y = 5,
},
}

vpaths = {
{
type = "Disjoint",
x = 1,
y = 1,
},
{
type = "Disjoint",
x = 4,
y = 1,
},
{
type = "Disjoint",
x = 5,
y = 3,
},
}

hpaths = {
{
type = "Disjoint",
x = 2,
y = 2,
},
{
type = "Disjoint",
x = 2,
y = 4,
},
{
type = "Disjoint",
x = 2,
y = 5,
},
{
type = "Disjoint",
x = 3,
y = 1,
},
{
type = "Disjoint",
x = 4,
y = 2,
},
}

tile:setup({
cells = cells,
vpaths = vpaths,
hpaths = hpaths,
intersections = intersections,
tile = {
width = 4,
height = 4,
innerScreenRatio = 0.825,
barWidth = 45
},
colors = {
solved = Color(220, 160, 0),
cell = Color(75, 80, 100),
background = Color(70, 70, 100),
vignette = Color(0, 0, 0, 16),
untraced = Color(10, 10, 40),
traced = Color(220, 220, 220)
}
})
end
Loading

0 comments on commit 7002f15

Please sign in to comment.