wishful/mods/wislib/namespace/namespace.lua
2025-02-07 14:39:37 -05:00

71 lines
2.8 KiB
Lua
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

local context = debug and debug.getinfo(1, "S").source:match("mods[/\\][/\\]?([^/]*)") or error("They broke debug!")
local modname = minetest and minetest.get_current_modname()
local modpath = minetest and minetest.get_modpath(modname)
-- Table main_table
--registrate namespace aliases, shorthands, spelling errors, and A.R.G. hint declarations
--that will delegate the function call to _G[context]
--TODO:127 is the hint, stop asking!
_G[string.char(127+1)]={} -- Ç
setmetatable(_G[string.char(127+1)], { __index = _G[context] })
--_G[string.char(127)]={} -- ⌂
--setmetatable(_G[string.char(127)], { __index = _G[context] })
_G[string.char(99)]={} -- c
setmetatable(_G[string.char(99)], { __index = _G[context] })
_G[string.char(67)]={} -- C
setmetatable(_G[string.char(67)], { __index = _G[context] })
--[[
ALPHABET SOUP xD: Anise, Basil, Cilantro, Dill, Epazote, Fennel, Garlic,
Horehound, Italian parsley, Jasmine, Khorne (Pre-Seasoned),
Lemongrass, Mint, Nasturtium, Oregano, Parsley
Quinine, Rosemary, Sage, Thyme, Uva Ursi, Vietnamese coriander
Wasabi, Xylopia, Yuca, Zapote
--]]
--[[
--The Four Classical Elements:
--🜁 (Alchemical Symbol for Air) : Represents intellect, communication, and self-awareness.
--🜂 (Alchemical Symbol for Fire) : Symbolizes energy, transformation, passion, and self-motivation.
--🜃 (Alchemical Symbol for Earth) : Represents physical sensations and stability, and mastery over the flesh
--🜄 (Alchemical Symbol for Water) : Symbolizes intuition and emotional depth.
--The Three Primes (Tria Prima)
--☿ (Mercury) : Symbolizes the mind and volatility.
--🜔 (Salt) : Represents the body and solidity.
--🜍 (Sulfur) : Represents the soul and combustibility.
--The Seven Planetary Metals
--☉(Gold) : Associated with the Sun, symbolizes perfection and enlightenment.
--☽(Silver) : Associated with the Moon, represents purity and reflection.
--♂(Iron) : Associated with Mars, symbolizes strength and aggression.
--☿(Mercury) : Associated with Mercury, represents fluidity and adaptability.
--♃(Tin) : Associated with Jupiter, symbolizes wisdom and expansion.
--♀(Copper) : Associated with Venus, represents love and beauty.
--♄(Lead) : Associated with Saturn, symbolizes endurance and transformation.
--Other Alchemical Symbols
--🜔(Philosophers Stone) : Represents the ultimate goal of alchemy, transformation and enlightenment.
--🜓(Ouroboros) : Symbolizes infinity and the cyclical nature of life.
--🜇(Alchemical Flask) Represents the vessel used in alchemical processes.
--⚕(Staff of Asclepius) Symbolizes healing and balance. See also: Caduceus ☤
--Other Symbols
--☥ (Ankh)
--⚘ (Flower)
--⚖ (Scales)
--♾ (Infinity)
--☯ (Yin Yang)
--]]