Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/puyodead1/cosmicnodes
Spigot plugin replicating CosmicSky nodes
https://github.com/puyodead1/cosmicnodes
Last synced: about 1 month ago
JSON representation
Spigot plugin replicating CosmicSky nodes
- Host: GitHub
- URL: https://github.com/puyodead1/cosmicnodes
- Owner: Puyodead1
- License: gpl-3.0
- Created: 2019-06-29T22:51:04.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2021-06-17T14:23:17.000Z (over 3 years ago)
- Last Synced: 2024-05-02T03:45:50.173Z (6 months ago)
- Language: Java
- Size: 76.2 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# CosmicNodes (WIP)
This plugin is a recreation of the Nodes from CosmicSky (with a some extra features that are configurable)
![GitHub repo size](https://img.shields.io/github/repo-size/Puyodead1-Development/CosmicNodes.svg?style=plastic)
![Discord](https://img.shields.io/discord/589200717277954093.svg?style=plastic)
![GitHub All Releases](https://img.shields.io/github/downloads/Puyodead1-Development/CosmicNodes/total.svg?style=plastic)
![GitHub issues](https://img.shields.io/github/issues/Puyodead1-Development/CosmicNodes.svg?style=plastic)
![GitHub closed issues](https://img.shields.io/github/issues-closed-raw/Puyodead1-Development/CosmicNodes.svg?style=plastic)
![GitHub](https://img.shields.io/github/license/Puyodead1-Development/CosmicNodes.svg?style=plastic)
![Spiget Rating](https://img.shields.io/spiget/rating/0.svg?style=plastic)
![GitHub last commit](https://img.shields.io/github/last-commit/Puyodead1/CosmicNodes.svg?style=plastic)## Requirments
- Spigot 1.13 (for now)
- ~~HolographicDisplays (optional - toggle in config)~~ (Not implemented yet)## Commands
- /cosmicnodes givenode \ \## Config info
[Valid Materials](https://gitlab.com/RandomHashTags/RandomSky/blob/master/src/main/java/me/randomhashtags/randomsky/utils/universal/UMaterial.java)
You can add more nodes by copying the existing ``LOG`` part and just changing it. EX:
Original Config ``LOG``:
```
nodes:
LOG:
respawn time: 60
harvest block: OAK_LOG
node block: OAK_PLANKS
name: "&fLog Node"
loot: OAK_BUTTON
# loot:
# - "scrap:oak; &f&l*&r &f1x Wood Scrap"
lore:
- "&7Resource Node"
- " "
- "&f&lLoot"
# - "{LOOT}"
- " &f&l*&r &f1x Wood Scrap"
- " "
- "&f&lRespawn Time"
- " &f{RESPAWN}"
- " "
- "&7Place this resource node on your island!"
```
Adding ``GOLD``:
```
nodes:
LOG:
respawn time: 60
harvest block: OAK_LOG
node block: OAK_PLANKS
name: "&fLog Node"
loot: OAK_BUTTON
# loot:
# - "scrap:oak; &f&l*&r &f1x Wood Scrap"
lore:
- "&7Resource Node"
- " "
- "&f&lLoot"
# - "{LOOT}"
- " &f&l*&r &f1x Wood Scrap"
- " "
- "&f&lRespawn Time"
- " &f{RESPAWN}"
- " "
- "&7Place this resource node on your island!"
GOLD:
respawn time: 1200
harvest block: GOLD_BLOCK
node block: GOLD_ORE
name: "&6Gold Node"
loot: YELLOW_DYE
# loot:
# - "scrap:oak; &f&l*&r &f1x Wood Scrap"
lore:
- "&7Resource Node"
- " "
- "&f&lLoot"
# - "{LOOT}"
- " &f&l*&r &f1x Gold Scrap"
- " "
- "&f&lRespawn Time"
- " &f{RESPAWN}"
- " "
- "&7Place this resource node on your island!"
```