mirror of
https://github.com/Freezy-Studios/BlazeSMP.git
synced 2025-04-22 07:24:03 +02:00
commit
aaa020822f
13 changed files with 56 additions and 2 deletions
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
|
@ -19,6 +19,9 @@ repositories {
|
||||||
|
|
||||||
dependencies {
|
dependencies {
|
||||||
compileOnly("io.papermc.paper:paper-api:1.21.1-R0.1-SNAPSHOT")
|
compileOnly("io.papermc.paper:paper-api:1.21.1-R0.1-SNAPSHOT")
|
||||||
|
implementation("com.google.code.gson:gson:2.12.1")
|
||||||
|
compileOnly 'org.projectlombok:lombok:1.18.36'
|
||||||
|
annotationProcessor 'org.projectlombok:lombok:1.18.36'
|
||||||
}
|
}
|
||||||
|
|
||||||
def targetJavaVersion = 21
|
def targetJavaVersion = 21
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
package org.example.blazesmp;
|
package me.freezy.plugins.papermc.blazesmp;
|
||||||
|
|
||||||
import org.bukkit.plugin.java.JavaPlugin;
|
import org.bukkit.plugin.java.JavaPlugin;
|
||||||
|
|
|
@ -0,0 +1,5 @@
|
||||||
|
package me.freezy.plugins.papermc.blazesmp.module;
|
||||||
|
|
||||||
|
public class Clan {
|
||||||
|
|
||||||
|
}
|
2
src/main/resources/config.yml
Normal file
2
src/main/resources/config.yml
Normal file
|
@ -0,0 +1,2 @@
|
||||||
|
op-prefix: '<color:dark_gray>[</color><gradient:#ffa600:#ffb700><b>Team</b></gradient><color:dark_gray>]</color>'
|
||||||
|
player-prefix: '<color:dark_gray>[</color><gradient:#747e80:#828d8f><b>Player</b></gradient><color:dark_gray>]</color>'
|
|
@ -1,6 +1,6 @@
|
||||||
name: BlazeSMP
|
name: BlazeSMP
|
||||||
version: '0.0.1-a'
|
version: '0.0.1-a'
|
||||||
main: org.example.blazesmp.BlazeSMP
|
main: me.freezy.plugins.papermc.blazesmp.BlazeSMP
|
||||||
api-version: '1.21'
|
api-version: '1.21'
|
||||||
load: STARTUP
|
load: STARTUP
|
||||||
authors: [ DaTTV, Freezy, EmrageGHC ]
|
authors: [ DaTTV, Freezy, EmrageGHC ]
|
||||||
|
|
22
src/main/resources/storage/clans/clan.json
Normal file
22
src/main/resources/storage/clans/clan.json
Normal file
|
@ -0,0 +1,22 @@
|
||||||
|
{
|
||||||
|
"name": "TTV",
|
||||||
|
"tag": "<red><suffix></red>",
|
||||||
|
"leader": "",
|
||||||
|
"vize": "",
|
||||||
|
"members": [""],
|
||||||
|
"chunks": {
|
||||||
|
"amount": 2,
|
||||||
|
"locations": [
|
||||||
|
{
|
||||||
|
"owner": "",
|
||||||
|
"x": "12",
|
||||||
|
"z": "4"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"owner": "",
|
||||||
|
"x": "13",
|
||||||
|
"z": "4"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
}
|
9
src/main/resources/storage/homes.json
Normal file
9
src/main/resources/storage/homes.json
Normal file
|
@ -0,0 +1,9 @@
|
||||||
|
{
|
||||||
|
"uuid": {
|
||||||
|
"x": "",
|
||||||
|
"y": "",
|
||||||
|
"z": "",
|
||||||
|
"yaw": "",
|
||||||
|
"pitch": ""
|
||||||
|
}
|
||||||
|
}
|
13
src/main/resources/storage/protected_blocks.json
Normal file
13
src/main/resources/storage/protected_blocks.json
Normal file
|
@ -0,0 +1,13 @@
|
||||||
|
{
|
||||||
|
"blocks": [
|
||||||
|
{
|
||||||
|
"owner": "",
|
||||||
|
"key": "",
|
||||||
|
"location": {
|
||||||
|
"x": "",
|
||||||
|
"y": "",
|
||||||
|
"z": ""
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
Loading…
Add table
Add a link
Reference in a new issue