-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
13 changed files
with
143 additions
and
19 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
# Not Enough Economy | ||
|
||
This mod add an item based economy system. | ||
|
||
## Usage | ||
|
||
### Coins | ||
|
||
<img src="https://raw.githubusercontent.com/CodeOfArdonia/NotEnoughEconomy/refs/heads/master/img/1.webp" style="width:256px" alt=""> | ||
|
||
Coins are tools for trade. | ||
|
||
### Exchange Station | ||
|
||
<img src="https://raw.githubusercontent.com/CodeOfArdonia/NotEnoughEconomy/refs/heads/master/img/2.webp" style="width:256px" alt=""> | ||
|
||
Exchange Station is a place to exchange small charges. | ||
|
||
### Cheque Table | ||
|
||
<img src="https://raw.githubusercontent.com/CodeOfArdonia/NotEnoughEconomy/refs/heads/master/img/3.webp" style="width:256px" alt=""> | ||
|
||
You can make cheques with Cheque Table. | ||
Place coins and empty cheque then click checkin can make cheques. | ||
Put fulfilled cheques in the upper slot then click checkout can extract cheques. | ||
|
||
### Trade Station | ||
|
||
Who place the block will be the owner and have the following GUI where you can manage it. | ||
|
||
<img src="https://raw.githubusercontent.com/CodeOfArdonia/NotEnoughEconomy/refs/heads/master/img/4.webp" style="width:256px" alt=""> | ||
|
||
The others will have another gui for trade. | ||
|
||
<img src="https://raw.githubusercontent.com/CodeOfArdonia/NotEnoughEconomy/refs/heads/master/img/5.webp" style="width:256px" alt=""> | ||
|
||
There's another block named `System Trade Station`, which provide infinite goods. You can use it to make server shops. |
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
24 changes: 24 additions & 0 deletions
24
src/main/resources/data/not_enough_economy/recipes/cheque.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
{ | ||
"type": "minecraft:crafting_shapeless", | ||
"ingredients": [ | ||
{ | ||
"item": "minecraft:paper" | ||
}, | ||
{ | ||
"item": "minecraft:paper" | ||
}, | ||
{ | ||
"item": "minecraft:paper" | ||
}, | ||
{ | ||
"item": "minecraft:ink_sac" | ||
}, | ||
{ | ||
"item": "minecraft:feather" | ||
} | ||
], | ||
"result": { | ||
"item": "not_enough_economy:cheque", | ||
"count": 3 | ||
} | ||
} |
19 changes: 19 additions & 0 deletions
19
src/main/resources/data/not_enough_economy/recipes/cheque_table.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
{ | ||
"type": "minecraft:crafting_shaped", | ||
"pattern": [ | ||
"SSS", | ||
"SLS", | ||
"S S" | ||
], | ||
"key": { | ||
"S": { | ||
"tag": "minecraft:stone_crafting_materials" | ||
}, | ||
"L": { | ||
"tag": "c:lapis" | ||
} | ||
}, | ||
"result": { | ||
"item": "not_enough_economy:cheque_table" | ||
} | ||
} |
19 changes: 19 additions & 0 deletions
19
src/main/resources/data/not_enough_economy/recipes/exchange_station.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
{ | ||
"type": "minecraft:crafting_shaped", | ||
"pattern": [ | ||
"PPP", | ||
"PEP", | ||
"P P" | ||
], | ||
"key": { | ||
"P": { | ||
"tag": "minecraft:planks" | ||
}, | ||
"E": { | ||
"tag": "c:emeralds" | ||
} | ||
}, | ||
"result": { | ||
"item": "not_enough_economy:exchange_station" | ||
} | ||
} |
19 changes: 19 additions & 0 deletions
19
src/main/resources/data/not_enough_economy/recipes/trade_station.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
{ | ||
"type": "minecraft:crafting_shaped", | ||
"pattern": [ | ||
"SSS", | ||
"SAS", | ||
"S S" | ||
], | ||
"key": { | ||
"S": { | ||
"tag": "minecraft:stone_crafting_materials" | ||
}, | ||
"A": { | ||
"item": "minecraft:amethyst_shard" | ||
} | ||
}, | ||
"result": { | ||
"item": "not_enough_economy:trade_station" | ||
} | ||
} |