Initial Commit

This commit is contained in:
2026-01-04 18:21:33 -06:00
commit 1d676526fe
133 changed files with 10359 additions and 0 deletions

117
gamemode/core/cl_fonts.lua Normal file
View File

@@ -0,0 +1,117 @@
-- ####################################################################################
-- ## ##
-- ## ##
-- ## CASUAL BANANAS CONFIDENTIAL ##
-- ## ##
-- ## __________________________ ##
-- ## ##
-- ## ##
-- ## Copyright 2014 (c) Casual Bananas ##
-- ## All Rights Reserved. ##
-- ## ##
-- ## NOTICE: All information contained herein is, and remains ##
-- ## the property of Casual Bananas. The intellectual and technical ##
-- ## concepts contained herein are proprietary to Casual Bananas and may be ##
-- ## covered by U.S. and Foreign Patents, patents in process, and are ##
-- ## protected by trade secret or copyright law. ##
-- ## Dissemination of this information or reproduction of this material ##
-- ## is strictly forbidden unless prior written permission is obtained ##
-- ## from Casual Bananas ##
-- ## ##
-- ## _________________________ ##
-- ## ##
-- ## ##
-- ## Casual Bananas is registered with the "Kamer van Koophandel" (Dutch ##
-- ## chamber of commerce) in The Netherlands. ##
-- ## ##
-- ## Company (KVK) number : 59449837 ##
-- ## Email : info@casualbananas.com ##
-- ## ##
-- ## ##
-- ####################################################################################
surface.CreateFont("JBExtraSmallShadow",{
font = JB.Config.font,
size = 11,
weight = 400,
blursize = 2,
})
surface.CreateFont("JBExtraSmall",{
font = JB.Config.font,
size = 11,
weight = 400
})
surface.CreateFont("JBSmallShadow",{
font = JB.Config.font,
size = 14,
weight =400,
blursize = 2,
})
surface.CreateFont("JBSmall",{
font = JB.Config.font,
size = 14,
weight = 400
})
surface.CreateFont("JBNormalShadow",{
font = JB.Config.font,
size = 18,
blursize = 2,
weight = 400
})
surface.CreateFont("JBNormal",{
font = JB.Config.font,
size = 18,
weight = 400
})
surface.CreateFont("JBLargeShadow",{
font = JB.Config.font,
size = 27,
weight = 400,
blursize = 2
})
surface.CreateFont("JBLarge",{
font = JB.Config.font,
size = 27,
weight = 400
})
surface.CreateFont("JBLargeBold",{
font = JB.Config.font,
size = 27,
weight = 600
})
surface.CreateFont("JBExtraLargeShadow",{
font = JB.Config.font,
size = 41,
weight = 400,
blursize = 2,
})
surface.CreateFont("JBExtraLarge",{
font = JB.Config.font,
size = 41,
weight = 400
})
surface.CreateFont("JBExtraExtraLargeShadow",{
font = JB.Config.font,
size = 64,
weight = 400,
blursize = 2,
})
surface.CreateFont("JBExtraExtraLarge",{
font = JB.Config.font,
size = 64,
weight = 400
})