From eef8ef075932b02aa356caee8de16b354c41019a Mon Sep 17 00:00:00 2001 From: TenPlus1 Date: Mon, 21 Sep 2015 12:15:14 +0100 Subject: [PATCH] Initial upload --- depends.txt | 6 ++ init.lua | 201 +++++++++++++++++++++++++++++++++++++++ license.txt | 14 +++ textures/choc_bottom.png | Bin 0 -> 240 bytes textures/choc_inside.png | Bin 0 -> 197 bytes textures/choc_inv.png | Bin 0 -> 237 bytes textures/choc_side.png | Bin 0 -> 207 bytes textures/choc_top.png | Bin 0 -> 215 bytes textures/coff_bottom.png | Bin 0 -> 123 bytes textures/coff_inside.png | Bin 0 -> 173 bytes textures/coff_inv.png | Bin 0 -> 225 bytes textures/coff_side.png | Bin 0 -> 210 bytes textures/coff_top.png | Bin 0 -> 238 bytes textures/meat_bottom.png | Bin 0 -> 214 bytes textures/meat_inside.png | Bin 0 -> 211 bytes textures/meat_inv.png | Bin 0 -> 267 bytes textures/meat_side.png | Bin 0 -> 208 bytes textures/meat_top.png | Bin 0 -> 226 bytes textures/pie_bottom.png | Bin 0 -> 240 bytes textures/pie_inside.png | Bin 0 -> 207 bytes textures/pie_inv.png | Bin 0 -> 235 bytes textures/pie_side.png | Bin 0 -> 208 bytes textures/pie_top.png | Bin 0 -> 212 bytes textures/rvel_bottom.png | Bin 0 -> 123 bytes textures/rvel_inside.png | Bin 0 -> 181 bytes textures/rvel_inv.png | Bin 0 -> 235 bytes textures/rvel_side.png | Bin 0 -> 167 bytes textures/rvel_top.png | Bin 0 -> 151 bytes textures/scsk_bottom.png | Bin 0 -> 240 bytes textures/scsk_inside.png | Bin 0 -> 201 bytes textures/scsk_inv.png | Bin 0 -> 239 bytes textures/scsk_side.png | Bin 0 -> 201 bytes textures/scsk_top.png | Bin 0 -> 223 bytes 33 files changed, 221 insertions(+) create mode 100644 depends.txt create mode 100644 init.lua create mode 100644 license.txt create mode 100644 textures/choc_bottom.png create mode 100644 textures/choc_inside.png create mode 100644 textures/choc_inv.png create mode 100644 textures/choc_side.png create mode 100644 textures/choc_top.png create mode 100644 textures/coff_bottom.png create mode 100644 textures/coff_inside.png create mode 100644 textures/coff_inv.png create mode 100644 textures/coff_side.png create mode 100644 textures/coff_top.png create mode 100644 textures/meat_bottom.png create mode 100644 textures/meat_inside.png create mode 100644 textures/meat_inv.png create mode 100644 textures/meat_side.png create mode 100644 textures/meat_top.png create mode 100644 textures/pie_bottom.png create mode 100644 textures/pie_inside.png create mode 100644 textures/pie_inv.png create mode 100644 textures/pie_side.png create mode 100644 textures/pie_top.png create mode 100644 textures/rvel_bottom.png create mode 100644 textures/rvel_inside.png create mode 100644 textures/rvel_inv.png create mode 100644 textures/rvel_side.png create mode 100644 textures/rvel_top.png create mode 100644 textures/scsk_bottom.png create mode 100644 textures/scsk_inside.png create mode 100644 textures/scsk_inv.png create mode 100644 textures/scsk_side.png create mode 100644 textures/scsk_top.png diff --git a/depends.txt b/depends.txt new file mode 100644 index 0000000..c40e91f --- /dev/null +++ b/depends.txt @@ -0,0 +1,6 @@ +default +hunger? +hbhunger? +farming? +mobs? +ethereal? \ No newline at end of file diff --git a/init.lua b/init.lua new file mode 100644 index 0000000..f15c0d8 --- /dev/null +++ b/init.lua @@ -0,0 +1,201 @@ +local hmod = minetest.get_modpath("hunger") +local hbmod = minetest.get_modpath("hbhunger") + +local replace_pie = function(node, puncher, pos) + + if minetest.is_protected(pos, puncher:get_player_name()) then + return + end + + local pie = node.name:split("_")[1] + local num = tonumber(node.name:split("_")[2]) + + if num == 3 then + node.name = "air" + elseif num < 3 then + node.name = pie .. "_" .. (num + 1) + end + + if hmod then + local h = hunger.read(puncher) +--print ("hunger is "..h) + h = math.min(h + 4, 30) + local ok = hunger.update_hunger(puncher, h) + minetest.sound_play("hunger_eat", { + pos = pos, gain = 0.7, hear_distance = 5}) + elseif hbmod then + local h = tonumber(hbhunger.hunger[puncher:get_player_name()]) +--print ("hbhunger is "..h) + h = math.min(h + 4, 30) + hbhunger.hunger[puncher:get_player_name()] = h + minetest.sound_play("hbhunger_eat_generic", { + pos = pos, gain = 0.7, hear_distance = 5}) + else + local h = puncher:get_hp() +--print ("health is "..h) + h = math.min(h + 4, 20) + puncher:set_hp(h) + end + + minetest.set_node(pos, {name = node.name}) + +end + +local register_pie = function(pie, desc) + +minetest.register_node("pie:"..pie.."_0", { + description = desc, + paramtype = "light", + sunlight_propagates = false, + tiles = { + pie.."_top.png", pie.."_bottom.png", pie.."_side.png", + pie.."_side.png", pie.."_side.png", pie.."_side.png" + }, + inventory_image = pie.."_inv.png", + wield_image = pie.."_inv.png", + groups = {}, + drawtype = "nodebox", + node_box = { + type = "fixed", + fixed = {{-0.45, -0.5, -0.45, 0.45, 0, 0.45}}, + }, + on_punch = function(pos, node, puncher, pointed_thing) + replace_pie(node, puncher, pos) + end, +}) + +minetest.register_node("pie:"..pie.."_1", { + description = "3/4"..desc, + paramtype = "light", + sunlight_propagates = false, + tiles = { + pie.."_top.png", pie.."_bottom.png", pie.."_side.png", + pie.."_side.png", pie.."_side.png", pie.."_side.png" + }, + groups = {not_in_creative_inventory = 1}, + drawtype = "nodebox", + node_box = { + type = "fixed", + fixed = {{-0.45, -0.5, -0.25, 0.45, 0, 0.45}}, + }, + on_punch = function(pos, node, puncher, pointed_thing) + replace_pie(node, puncher, pos) + end, +}) + +minetest.register_node("pie:"..pie.."_2", { + description = "Half "..desc, + paramtype = "light", + sunlight_propagates = false, + tiles = { + pie.."_top.png", pie.."_bottom.png", pie.."_side.png", + pie.."_side.png", pie.."_side.png", pie.."_side.png" + }, + groups = {not_in_creative_inventory = 1}, + drawtype = "nodebox", + node_box = { + type = "fixed", + fixed = {{-0.45, -0.5, 0.0, 0.45, 0, 0.45}}, + }, + on_punch = function(pos, node, puncher, pointed_thing) + replace_pie(node, puncher, pos) + end, +}) + +minetest.register_node("pie:"..pie.."_3", { + description = "Piece of "..desc, + paramtype = "light", + sunlight_propagates = false, + tiles = { + pie.."_top.png", pie.."_bottom.png", pie.."_side.png", + pie.."_side.png", pie.."_side.png", pie.."_side.png" + }, + groups = {not_in_creative_inventory = 1}, + drawtype = "nodebox", + node_box = { + type = "fixed", + fixed = {{-0.45, -0.5, 0.25, 0.45, 0, 0.45}}, + }, + on_punch = function(pos, node, puncher, pointed_thing) + replace_pie(node, puncher, pos) + end, +}) + +end + +-- Normal Cake +register_pie("pie", "Cake") + +minetest.register_craft({ + output = "pie:pie_0", + recipe = { + {"farming:sugar", "mobs:bucket_milk", "farming:sugar"}, + {"farming:sugar", "mobs:egg", "farming:sugar"}, + {"farming:wheat", "farming:flour", "farming:wheat"}, + }, + replacements = {{ "mobs:bucket_milk", "bucket:bucket_empty"}} +}) + +-- Chocolate Cake +register_pie("choc", "Chocolate Cake") + +minetest.register_craft({ + output = "pie:choc_0", + recipe = { + {"farming:cocoa_beans", "mobs:bucket_milk", "farming:cocoa_beans"}, + {"farming:sugar", "mobs:egg", "farming:sugar"}, + {"farming:wheat", "farming:flour", "farming:wheat"}, + }, + replacements = {{ "mobs:bucket_milk", "bucket:bucket_empty"}} +}) + +-- Strawberry Cheesecake +register_pie("scsk", "Strawberry Cheesecake") + +minetest.register_craft({ + output = "pie:scsk_0", + recipe = { + {"ethereal:strawberry", "mobs:bucket_milk", "ethereal:strawberry"}, + {"farming:sugar", "mobs:egg", "farming:sugar"}, + {"farming:wheat", "farming:flour", "farming:wheat"}, + }, + replacements = {{ "mobs:bucket_milk", "bucket:bucket_empty"}} +}) + +-- Coffee Cake +register_pie("coff", "Coffee Cake") + +minetest.register_craft({ + output = "pie:coff_0", + recipe = { + {"farming:coffee_beans", "mobs:bucket_milk", "farming:coffee_beans"}, + {"farming:sugar", "mobs:egg", "farming:sugar"}, + {"farming:wheat", "farming:flour", "farming:wheat"}, + }, + replacements = {{ "mobs:bucket_milk", "bucket:bucket_empty"}} +}) + +-- Red Velvet Cake +register_pie("rvel", "Red Velvet Cake") + +minetest.register_craft({ + output = "pie:rvel_0", + recipe = { + {"farming:cocoa_beans", "mobs:bucket_milk", "dye:red"}, + {"farming:sugar", "mobs:egg", "farming:sugar"}, + {"farming:flour", "mobs:cheese", "farming:flour"}, + }, + replacements = {{ "mobs:bucket_milk", "bucket:bucket_empty"}} +}) + +-- Meat Cake +register_pie("meat", "Meat Cake") + +minetest.register_craft({ + output = "pie:meat_0", + recipe = { + {"mobs:meat_raw", "mobs:egg", "mobs:meat_raw"}, + {"farming:wheat", "farming:wheat", "farming:wheat"}, + {"", "", ""} + }, +}) \ No newline at end of file diff --git a/license.txt b/license.txt new file mode 100644 index 0000000..5d30c14 --- /dev/null +++ b/license.txt @@ -0,0 +1,14 @@ + + DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE + Version 2, December 2004 + + Copyright (C) 2004 Sam Hocevar + + Everyone is permitted to copy and distribute verbatim or modified + copies of this license document, and changing it is allowed as long + as the name is changed. + + DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE + TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION + + 0. You just DO WHAT THE FUCK YOU WANT TO. \ No newline at end of file diff --git a/textures/choc_bottom.png b/textures/choc_bottom.png new file mode 100644 index 0000000000000000000000000000000000000000..91ff52a00e02ee9b53fc1774876561f1fe769acf GIT binary patch literal 240 zcmeAS@N?(olHy`uVBq!ia0vp^d?3ui3?$#C89V|~1_3@HuDm>q!u$+!VvO>V49XG= znsSV~iVQ}o49@xt?s^P9Mht;wOre$x(Uy#fb__XA46H()tw6oio-U3d9M>5O82bM+ zgoTBam>4NBRAoeTMRg}KSZrJMc5h!2L)M;qclzcUFu3)e$v%3+i9z$(y4Sm3C^AIt z+q3JQcL0M{-|npUFB}*&&gH+&Ij_iI@$cM>x7|QGX4mb2WR!~5YK|o}U{_NmQp&>v%gQu&X%Q~loCIH{SNFD$H literal 0 HcmV?d00001 diff --git a/textures/choc_inside.png b/textures/choc_inside.png new file mode 100644 index 0000000000000000000000000000000000000000..0f6baa0786d052cfda35a51c4248d597d84a04ff GIT binary patch literal 197 zcmeAS@N?(olHy`uVBq!ia0vp^d?3ui3?$#C89V|~1_3@Hu3Q`pEbL4?+zfoYOv3yO zk^&5}!VFTP3>q>FIx-B#QcSvv3^>vi*yJ#xZ!h`njxgN@xNAc1|~B literal 0 HcmV?d00001 diff --git a/textures/choc_inv.png b/textures/choc_inv.png new file mode 100644 index 0000000000000000000000000000000000000000..6f5eb32f477e14815a03fa5c834353f1c3695f98 GIT binary patch literal 237 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFv5AX?b1=2=x-2MgvK}Le%rb5|{ zVy|Rn3tc6aq$r=O)xO$kbG^^y=G1`aKKp?x85m1~{DK)Ap4~_Ta!Nd1978y+Cnq>C zxH&p98tCSv8fDP0FNn8DN4&t;ucLK6V( Cu0c=$ literal 0 HcmV?d00001 diff --git a/textures/choc_top.png b/textures/choc_top.png new file mode 100644 index 0000000000000000000000000000000000000000..5c312fe2ddd00ec2889085e0cb0379b722434af3 GIT binary patch literal 215 zcmeAS@N?(olHy`uVBq!ia0vp^d?3ui3?$#C89V|~x&b~Ru2TFAr3?%j;*3U83?|YH z=5h?y@(flAjQbfFe3Y1cRGHm18T>R^f(%$5v9ljorgIypG1b$>F@)oKvIlc>O52&4 z#^vws%{?%|GP>s7-5BP!Gqa2H?`5-JDu2K2y#UiC{iOHzRx)1d-BnzEkLA+o^Y=vO zXCIir8&dk+(&I1R!rA4Gf1Yozd3KcPFVdQ&MBb@0G!cBhyVZp literal 0 HcmV?d00001 diff --git a/textures/coff_bottom.png b/textures/coff_bottom.png new file mode 100644 index 0000000000000000000000000000000000000000..3421317a132658de0cecb682e4b0dabab845f910 GIT binary patch literal 123 zcmeAS@N?(olHy`uVBq!ia0vp^d?3uo3?x~3E8j@|hWZ`&t+1-Ea!Y`^(=zFJGHiZf{WpRnRCV+bpQOCx{V T)38Z$K)no}u6{1-oD!M<+BPDF literal 0 HcmV?d00001 diff --git a/textures/coff_inside.png b/textures/coff_inside.png new file mode 100644 index 0000000000000000000000000000000000000000..3a5f2a1a1a059b1c4fd7f1160fe3961250bf878b GIT binary patch literal 173 zcmeAS@N?(olHy`uVBq!ia0vp^d?3ui3?$#C89V|~(g8jpt_lncCNg}v{+dmR`n_3( zlgjK@b-JzV@Y}OG+R(r?9jJ`4B*-tA!Qt7BG$6;p)5S4_<9c#}f?&(ER;iV(ZN?nt z(#(yD%^SKmZtm<>Y@RTwt8?-srREJACr%P_k>TK#bcu=aiJ2qY_(@>_2SaxSx7V7p S6Q=^rV(@hJb6Mw<&;$T^2{eQN literal 0 HcmV?d00001 diff --git a/textures/coff_inv.png b/textures/coff_inv.png new file mode 100644 index 0000000000000000000000000000000000000000..7e01dc2caa3c6599de8a0709c3b83ac30253cfef GIT binary patch literal 225 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFv4DbnY1=6;%+|K55Y5uy?J*Ach zE3A)D-Vv*QY(>qn_3by0t+*k6?-5WDV@Z%-FoVOh8)-mJo~Mgr2*>s01P2B+RaI7l zwHGg5T*9zuci7q}#*|Ex^_Mm=ZIUnvYitmla4~g{7q^a)XZBUC?mjiP&Y8wm4GShZ zE-6-?fBwF6ppa-s!ro!*A2PuZb6Z_E{8kT_KTPwZKg``D@Au;uvzq31;ToX944$rjF6*2U FngG~0O1}UA literal 0 HcmV?d00001 diff --git a/textures/coff_top.png b/textures/coff_top.png new file mode 100644 index 0000000000000000000000000000000000000000..22efe78f022189ce453364d83ca2d8a9ff33c09a GIT binary patch literal 238 zcmVq+hta;B*~X~b%d_Rz#O>qP>H`>B0001a zNkl&_8L#rEJ`J~TSAHlik^xiNFcH@Yd z(vf~0E@O1Ta JS?83{1OVVgM1KGP literal 0 HcmV?d00001 diff --git a/textures/meat_inside.png b/textures/meat_inside.png new file mode 100644 index 0000000000000000000000000000000000000000..a703df9ecd74ba608778bdb031d1030a0f9245ac GIT binary patch literal 211 zcmeAS@N?(olHy`uVBq!ia0vp^d?3uh3?wzC-F*zCj01c^Tpbt~gqT?*nAsHASX9{9 z)LA+7I5|u?*i3jit%NuoB)Ky!)hliE3LSLo-HrQ0?B*u>+8vYQ1!`w33GxeOaCmkj z4ao8Hba4#fxW4uHLB<0L9L|9*E=RQ9*yo;=$d22WQ%mvv4F FO#nA`K5+m5 literal 0 HcmV?d00001 diff --git a/textures/meat_inv.png b/textures/meat_inv.png new file mode 100644 index 0000000000000000000000000000000000000000..eaae76546639ccc44cf2e286f7f8136a28cdabd9 GIT binary patch literal 267 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!aez;Vt8QkV6)&%wIG?Sou&=C$ zo3d1hl8CR4QmBqxnz>q@y-t;_ZljlFqqlK;pnZRc?TlEr7x_E)0<|-i1o;IsI6S+N z2IRDPx;TbNT+Z#k$ahqM!`U%~BlzL}{bdh|CjZ``X7^=_8RLWCBQ84iW+r!fe?~l9 ztNrd}aI?_GQvuUoe&UjNV)u3Hd#)abmSxe`lB+!aEi6!4|0~Hz_&`jtP@<4@vU0*| zPid>RsC?EcKQY6%`a9O$)4jiskKxF)HCLi4D*`zM>#sk!`28V&Q#b3e8)5Ocfi7b3 MboFyt=akR{0K`LJZ2$lO literal 0 HcmV?d00001 diff --git a/textures/meat_side.png b/textures/meat_side.png new file mode 100644 index 0000000000000000000000000000000000000000..a5049ad30a8dbeb3d3a1893ac5fa65f3c4759d18 GIT binary patch literal 208 zcmeAS@N?(olHy`uVBq!ia0vp^d?3uh3?wzC-F*zCj01c^Ty-<^OgY$`_;@^od4t9H z(#%!z?R6?`^lI&O8a&MFyp3ACO!`A?`$C+iMmfz*@SKwt*y^B{3)Ie7666=m;PC85 z8j$1d>Eal|aeZt1P2K|vB8QzC+#3tt*yp}H=+3@E^*GlD>8@)**S$`v^<*wpt!|DH zNw;5O9iW!1s=A5K;!^SJ2Q?gZyYqHDFn(QU!FaZiY3jVo2ONOLGI+ZBxvXE^1rHd>W7dW8Mdc{fmRuBVG*2*>s0A0fF# zL62TmwwZo%f3H)rG0nnwqyFo?ztY-vFLyb$hwoqFjW_IJ2S2E@tZ8z5G?U+h^{`WZ z^aL)p1yK{Y+P*Z`CpBnEOq)BUg4?9|;hVXw>ozTSk$9G}_j+;k_s+((XI@|UG{uzR Y$xYMhg?-DDffh4(y85}Sb4q9e01G%+C;$Ke literal 0 HcmV?d00001 diff --git a/textures/pie_bottom.png b/textures/pie_bottom.png new file mode 100644 index 0000000000000000000000000000000000000000..a2ea64f0954de545034d6617c90d12ea3ad6e45a GIT binary patch literal 240 zcmeAS@N?(olHy`uVBq!ia0vp^d?3ui3?$#C89V|~1_3@Ht|6|9QC@0kp#}wUmTiR& zJ!P&_>U@^;My;F_ziC$bsm&D^cGq1#(0Su%-LtGeUcU7&fUfskHbz}FxyX&Shbl<)IcKz8vhK#*;=U%@R!r=8{|J$>F zoEfUmpS}Gqwt&HV-JPEQzmgcD?)Crez3;@3_5a?kw`+nJqH1s7{rabgA^Uajt$n>g o3>;yt(_Kn}83Y846qOVeEACjaIegQ!2Rehn)78&qol`;+0CB)(n*aa+ literal 0 HcmV?d00001 diff --git a/textures/pie_inside.png b/textures/pie_inside.png new file mode 100644 index 0000000000000000000000000000000000000000..7a5255261ffc0639cd1cb754c45b982c5b9d7867 GIT binary patch literal 207 zcmeAS@N?(olHy`uVBq!ia0vp^d?3ui3?$#C89V|~1_3@HuA8@R^043!a1f91P|Auh z$%|5H%hc;A(CsNO=`M3w-08A%&DE?zv*G3D#KP;ILySxFbCaz@F84sMmNu3RuvXbwEGS4a1#YXjqnqQXKEmdIlo e8X65x*cg&lX~wH2+gt}afWgz%&t;ucLK6U4pH>(E literal 0 HcmV?d00001 diff --git a/textures/pie_side.png b/textures/pie_side.png new file mode 100644 index 0000000000000000000000000000000000000000..5243e00d5e3d560700a96b05528f5ed08f5d8320 GIT binary patch literal 208 zcmeAS@N?(olHy`uVBq!ia0vp^d?3ui3?$#C89V|~1_3@HuA8@Riu6=V3pL1#wdg8w zo>1j6r!{c(g=!Y&;S4bw!E-oGf*#MNswPKgTu2M zX+Vyjr;B3<$Mxg{1;IPE)!)v|G**{5xBvh5_y2bb^VFvQ+xxPjxJmKYOPBTlcj0F5 zt=*5rTov0+#9p;d54Se#XrDT5=M)QL4lXH8Eln*ZhNXvOn-9%=eH&;pgQu&X%Q~lo FCIEvgRKEZK literal 0 HcmV?d00001 diff --git a/textures/pie_top.png b/textures/pie_top.png new file mode 100644 index 0000000000000000000000000000000000000000..a55eba26669f4627749c269bfc46dc35e9c9ce5b GIT binary patch literal 212 zcmeAS@N?(olHy`uVBq!ia0vp^d?3ui3?$#C89V|~S^+*GuB8kN`xzJ>v9oVoTYTcs zlt=e=K7VrL<+GD-UtRe4?)s{#vF>O#9Nm-(kG8`P#iy zd+9S5ctc9VWtY?`pPswhVc)N_>zsEw{L@ Mp00i_>zopr08;v2d;kCd literal 0 HcmV?d00001 diff --git a/textures/rvel_bottom.png b/textures/rvel_bottom.png new file mode 100644 index 0000000000000000000000000000000000000000..1409dd31a496712e73ea9a2db671bc70898c27f4 GIT binary patch literal 123 zcmeAS@N?(olHy`uVBq!ia0vp^d?3uo3?xA2h_{p>FVdQ&MBb@0HzovDF6Tf literal 0 HcmV?d00001 diff --git a/textures/rvel_inside.png b/textures/rvel_inside.png new file mode 100644 index 0000000000000000000000000000000000000000..75e2d45779bb5091f64aacc200211a471e2708cb GIT binary patch literal 181 zcmeAS@N?(olHy`uVBq!ia0vp^d?3ui3?$#C89V|~(g8jpu8Ir{Q49>J%nXGL43$g_ zlNlJ6Ff!a`V4CS6me9$r3RK2e666=m;PC858j$1R>Eal|aXmRfL6C!st4)lH%V1IHsj3q&S!3+-1ZlnP@MV>B>Asp9}6C4=a z932@AbaQfYG#D27Iy*Nv>LhjtTn|#{cC-*-iE8Az{4F4SLWhSzfbYhMO3q#x8#Zp7 zI7!NRS@w$V$&;>`w4Di6bU3D^@c4}0>d;#bY|+o=T;5%N&L@FkQ`)&X)7Uok=<4b+ bp5$dH%9oE9KC^uv&~^q-S3j3^P6gTe~DWM4f896RA literal 0 HcmV?d00001 diff --git a/textures/rvel_top.png b/textures/rvel_top.png new file mode 100644 index 0000000000000000000000000000000000000000..b1852fe1c0e565e082ee753b9c31b2a5a6e7a402 GIT binary patch literal 151 zcmeAS@N?(olHy`uVBq!ia0vp^d?3ui3?$#C89V|~`~f~8uAU4G0SpWw3=BmK4F4Gz zBn%?Y0i~QhT^vI=uG{wB=4DXeV3t-7e9dx&Gv)u>mLCtAmld#1nHTEl=gH<)?)~+- yZ&b#kkB0NgcI+-+_UW_a!GJrDAB(-4&wDdkaK<5Rt;;~;7(8A5T-G@yGywow$1w{4 literal 0 HcmV?d00001 diff --git a/textures/scsk_bottom.png b/textures/scsk_bottom.png new file mode 100644 index 0000000000000000000000000000000000000000..d21456a0ca4918f319915149655aedd2ec7c7d48 GIT binary patch literal 240 zcmeAS@N?(olHy`uVBq!ia0vp^d?3ui3?$#C89V|~1_3@Hu0eJ(5zdM+ZYsrIN(DYL z`94ZzK63SbGVT5f&4Kb$qEseDY0ZdLpB}3_J=uIthPAcmN@<|pYEKu(5RU7N1q}WF z8D`FyHZ3hJjA8Dqnl*FIPGZP@dFKDS^=%Au-o5{~{#^n?=DBzCp1(?E$o_f$-@AWF z40GSVd-FeU0z=OJck}-LPGrb=KmT9fdnbnM|L^bqUzfy?HSf*8Z~vMYa{kVHb$@;$ n183T_=_w^fKx>r*6a^Ia8`<4jBve=d`njxgN@xNABNt&5 literal 0 HcmV?d00001 diff --git a/textures/scsk_inside.png b/textures/scsk_inside.png new file mode 100644 index 0000000000000000000000000000000000000000..fd0326caf014287982535a450af223512d77fdb6 GIT binary patch literal 201 zcmeAS@N?(olHy`uVBq!ia0vp^d?3ui3?$#C89V|~1_3@HuA8@RYGPoR&%khyf#E3w zXQZ=2skdBPkm8Iall8OfH?J!>v|{q!wM%d9+Wh3@;{V70|3ClVDsgXb y4Li$biBqRfpSpDEl7x|#me#G?!IDmj3=GR|%Wm9Q_UMM1{^Gb8M?WpfB$E*x;#E;xlwr2Nuj@+Smy6wTWM2Npxu2o zZ{13t58lb*sZYcHs@t2rxf!^428;T)pf`HO=bU{W)G#DCT~;VCbaTHH+TjwyzH8yD knR!n;PHc8-`u|W|xSZwXHo?&EKwB9+UHx3vIVCg!0Qgr{G5`Po literal 0 HcmV?d00001 diff --git a/textures/scsk_side.png b/textures/scsk_side.png new file mode 100644 index 0000000000000000000000000000000000000000..7d19b2067f5a2b58659df3f6f0c62bfd197116f2 GIT binary patch literal 201 zcmeAS@N?(olHy`uVBq!ia0vp^d?3ui3?$#C89V|~1_3@HuA8@RN@8HhVPI%tV3^Oq zaFl@|(pjO@TdplgaYmBK&P83D*OlyDyY$ws%}*X4`2Y9Q?t=H0K)sA5L4Lsu4$p3+ z0XgoTE{-7_*OLmGQpyZGC=?Wb8JZ2rHEyOqlI`i7pqU0 zFSYl4$u@@O;OXk;vd$@?2>{VdPPza9 literal 0 HcmV?d00001