more ranks ;)
This commit is contained in:
parent
32d632c79c
commit
41b80fe129
@ -7,8 +7,16 @@
|
|||||||
|
|
||||||
## License
|
## License
|
||||||
|
|
||||||
|
### Code
|
||||||
|
|
||||||
See `LICENSE.txt`.
|
See `LICENSE.txt`.
|
||||||
|
|
||||||
|
### Textures
|
||||||
|
|
||||||
|
CC BY SA 3.0
|
||||||
|
* https://github.com/minetest/minetest_game
|
||||||
|
* https://github.com/minetest-mods/technic
|
||||||
|
|
||||||
## Pull requests / bugs
|
## Pull requests / bugs
|
||||||
|
|
||||||
I'm happy for any bug reports or pull requests (code and textures).
|
I'm happy for any bug reports or pull requests (code and textures).
|
||||||
|
38
ranks.lua
38
ranks.lua
@ -60,13 +60,39 @@ local prefixes = {
|
|||||||
name="Lava",
|
name="Lava",
|
||||||
icon="xp_lava.png",
|
icon="xp_lava.png",
|
||||||
color={r=238, g=30, b=30},
|
color={r=238, g=30, b=30},
|
||||||
base_xp=6000000,
|
base_xp=6*1000*1000,
|
||||||
xp_modifier=400000
|
xp_modifier=400*1000
|
||||||
} -- 6000k - 10M
|
}, -- 6000k - 10M
|
||||||
|
{
|
||||||
|
name="Sulfur",
|
||||||
|
icon="xp_sulfur.png",
|
||||||
|
color={r=255, g=237, b=77},
|
||||||
|
base_xp=10*1000*1000,
|
||||||
|
xp_modifier=200*1000
|
||||||
|
}, -- 10M - 12M
|
||||||
|
{
|
||||||
|
name="Chernobylite",
|
||||||
|
icon="xp_chernobylite.png",
|
||||||
|
color={r=30, g=138, b=30},
|
||||||
|
base_xp=12*1000*1000,
|
||||||
|
xp_modifier=300*1000
|
||||||
|
}, -- 12M - 15M
|
||||||
|
{
|
||||||
|
name="Corium",
|
||||||
|
icon="xp_corium.png",
|
||||||
|
color={r=30, g=238, b=30},
|
||||||
|
base_xp=15*1000*1000,
|
||||||
|
xp_modifier=300*1000
|
||||||
|
}, -- 15M - 18M
|
||||||
|
{
|
||||||
|
name="Mithril",
|
||||||
|
icon="xp_mithril.png",
|
||||||
|
color={r=49, g=79, b=232},
|
||||||
|
base_xp=18*1000*1000,
|
||||||
|
xp_modifier=300*1000
|
||||||
|
} -- 18M - 21M
|
||||||
}
|
}
|
||||||
|
|
||||||
-- further ideas: mithril?
|
|
||||||
|
|
||||||
local suffixes = {
|
local suffixes = {
|
||||||
-- 7 suffixes
|
-- 7 suffixes
|
||||||
{name="Peasant", xp_modifier=0},
|
{name="Peasant", xp_modifier=0},
|
||||||
@ -93,5 +119,3 @@ for _,prefix in pairs(prefixes) do
|
|||||||
|
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
||||||
|
BIN
textures/xp_chernobylite.png
Normal file
BIN
textures/xp_chernobylite.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 666 B |
BIN
textures/xp_chromium.png
Normal file
BIN
textures/xp_chromium.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 377 B |
BIN
textures/xp_corium.png
Normal file
BIN
textures/xp_corium.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 1.2 KiB |
BIN
textures/xp_mithril.png
Normal file
BIN
textures/xp_mithril.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 213 B |
BIN
textures/xp_sulfur.png
Normal file
BIN
textures/xp_sulfur.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 2.3 KiB |
BIN
textures/xp_uranium.png
Normal file
BIN
textures/xp_uranium.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 383 B |
Loading…
x
Reference in New Issue
Block a user