Skip to content

Commit

Permalink
make gradle wrapper executable, add actual icon, add readme, correct …
Browse files Browse the repository at this point in the history
…fmj, cleanup build.gradle
  • Loading branch information
gliscowo committed Jan 17, 2022
1 parent 647f3f2 commit e9139e8
Show file tree
Hide file tree
Showing 6 changed files with 24 additions and 10 deletions.
14 changes: 14 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
# Numismatic Overhaul

[![curseforge](https://img.shields.io/badge/-CurseForge-gray?style=for-the-badge&logo=curseforge&labelColor=orange)](https://www.curseforge.com/minecraft/mc-mods/numismatic-overhaul)
[![modrinth](https://img.shields.io/badge/-modrinth-gray?style=for-the-badge&labelColor=green&labelWidth=15&logo=appveyor&logoColor=white)](https://modrinth.com/mod/numismatic-overhaul)
[![release](https://img.shields.io/github/v/release/glisco03/numismatic-overhaul?logo=github&style=for-the-badge)](https://github.com/gliscowo/numismatic-overhaul/releases)
[![discord](https://img.shields.io/discord/825828008644313089?label=wisp%20forest&logo=discord&logoColor=white&style=for-the-badge)](https://discord.gg/xrwHKktV2d)

## Overview

Numismatic Overhaul adds a currency system into Minecraft, closely inspired from Terraria. You obtain money from trading with Villagers, exploring the world or killing Pillagers. You then keep this money in a purse built into your inventory and subsequently spend it on the shops other players have set up or, alternatively, even more villager trading.

## Credits
- **Pois1x** for making the textures and inspiring the mod
- **Noaaan** for helping with some villager code and doing most of the ugly JSON work
7 changes: 3 additions & 4 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@ repositories {
maven { url = "https://maven.shedaniel.me/" }
maven { url = "https://maven.wispforest.io/"}
maven { url = uri("https://storage.googleapis.com/devan-maven/")}
mavenCentral()
}

dependencies {
Expand All @@ -27,13 +26,13 @@ dependencies {

// REI
modCompileOnly "me.shedaniel:RoughlyEnoughItems-api-fabric:${project.rei_version}"
modRuntime "me.shedaniel:RoughlyEnoughItems-fabric:${project.rei_version}"
modLocalRuntime "me.shedaniel:RoughlyEnoughItems-fabric:${project.rei_version}"

// DevLogin
modRuntime "com.ptsmods:devlogin:1.2.1"
modLocalRuntime "com.ptsmods:devlogin:1.2.1"

// Stacc
modRuntime(include("net.devtech:Stacc:1.3.0"))
modRuntimeOnly(include("net.devtech:Stacc:1.3.0"))

// OwO
modImplementation "io.wispforest:owo-lib:${project.owo_version}"
Expand Down
6 changes: 3 additions & 3 deletions gradle.properties
Original file line number Diff line number Diff line change
@@ -1,18 +1,18 @@
# Done to increase the memory available to gradle.
org.gradle.jvmargs=-Xmx1G
# Fabric Properties
# check these on https://modmuss50.me/fabric.html
# check these on https://wispforest.io/versions
minecraft_base_version=1.18
minecraft_version=1.18.1
yarn_mappings=1.18.1+build.6
loader_version=0.12.12
# Mod Properties
mod_version=0.1.3
mod_version=0.1.4
maven_group=com.glisco
archives_base_name=numismatic-overhaul
# Dependencies
# check this on https://modmuss50.me/fabric.html
fabric_version=0.43.1+1.18
cardinal_components_version=4.0.0
rei_version=7.0.339
owo_version=0.3.6+1.18
owo_version=0.3.14+1.18
Empty file modified gradlew
100644 → 100755
Empty file.
Binary file modified src/main/resources/assets/numismatic-overhaul/icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
7 changes: 4 additions & 3 deletions src/main/resources/fabric.mod.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,14 @@
"id": "numismatic-overhaul",
"version": "${version}",
"name": "Numismatic Overhaul",
"description": "Adds a Terraria-style currency system into Minecraft",
"description": "Terraria-style currency in Minecraft",
"authors": [
"glisco",
"Pois1x",
"Noaaan"
],
"contact": {},
"license": "GPL-3.0",
"license": "MIT",
"icon": "assets/numismatic-overhaul/icon.png",
"environment": "*",
"entrypoints": {
Expand All @@ -35,7 +35,8 @@
"fabric": "*",
"minecraft": ">=1.17",
"cardinal-components-base": "*",
"cardinal-components-entity": "*"
"cardinal-components-entity": "*",
"owo": ">=0.3.14"
},
"custom": {
"cardinal-components": [
Expand Down

0 comments on commit e9139e8

Please sign in to comment.