initial draft

master
BuckarooBanzay 2020-03-05 07:48:11 +01:00
commit 780cfb3c38
9 changed files with 67 additions and 0 deletions

17
.github/workflows/luacheck.yml vendored Normal file
View File

@ -0,0 +1,17 @@
name: luacheck
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: apt
run: sudo apt-get install -y luarocks
- name: luacheck install
run: luarocks install --local luacheck
- name: luacheck run
run: $HOME/.luarocks/bin/luacheck ./

18
.luacheckrc Normal file
View File

@ -0,0 +1,18 @@
globals = {
"epic_score"
}
read_globals = {
-- Stdlib
string = {fields = {"split"}},
table = {fields = {"copy", "getn"}},
-- Minetest
"vector", "ItemStack",
"dump", "VoxelArea",
-- deps
"minetest",
"screwdriver"
}

0
highscore.lua Normal file
View File

8
init.lua Normal file
View File

@ -0,0 +1,8 @@
epic_score = {}
local MP = minetest.get_modpath("epic_score")
dofile(MP.."/score.lua")
dofile(MP.."/highscore.lua")
dofile(MP.."/items.lua")

0
items.lua Normal file
View File

24
readme.md Normal file
View File

@ -0,0 +1,24 @@
epic_score -- Score plugin for the epic mod
-----------------
A mod for [minetest](http://www.minetest.net)
![](https://github.com/damocles-minetest/epic_score/workflows/luacheck/badge.svg)
# Overview
State: **WIP**
# Licenses
## Code
* MIT
## Assets
* 16x16 Icons in `textures/*`
* CC BY-SA 3.0 http://www.small-icons.com/packs/16x16-free-toolbar-icons.htm
* CC BY-SA 3.0 http://www.small-icons.com/packs/16x16-free-application-icons.htm

0
score.lua Normal file
View File

BIN
textures/epic_dollar.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 811 B

BIN
textures/epic_dollar_2.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 936 B