Skip to content

Commit 81f4df9

Browse files
committed
1.0.0
1 parent 508e500 commit 81f4df9

24 files changed

+2797
-1
lines changed

README.md

Lines changed: 34 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,35 @@
1-
# TheEnd
1+
# The End
2+
[![](https://i.loli.net/2019/06/12/5d0035e6ec88465573.png)](http://www.mcbbs.net/thread-872583-1-1.html "末路之地")
3+
24
The end plugin for Nukkit
5+
6+
Please see [mcbbs](http://www.mcbbs.net/thread-872583-1-1.html) for more information.
7+
## config.yml
8+
```yaml
9+
enable-end-portal: true
10+
exit-portal-activated: true
11+
generator:
12+
end:
13+
coordinate-scale: 684.412
14+
height:
15+
scale: 1368.824
16+
detail:
17+
noise-scale:
18+
x: 80.0
19+
y: 160.0
20+
z: 80.0
21+
```
22+
## Feature
23+
- [X] Main End Island
24+
- [X] Small End Island
25+
- [ ] End Midland
26+
- [ ] End Highland
27+
- [ ] End Barren
28+
- [X] End Portal
29+
- [ ] End Gateway
30+
- [X] End Crystal
31+
- [X] Obsidian Platform
32+
- [X] Obsidian Pillar
33+
- [X] End Podium
34+
- [X] Chorus Tree
35+
- [X] End Poem

pom.xml

Lines changed: 51 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,51 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
3+
<modelVersion>4.0.0</modelVersion>
4+
<groupId>cn.wode490390.nukkit</groupId>
5+
<artifactId>theend</artifactId>
6+
<version>1.0.0</version>
7+
<name>TheEnd</name>
8+
<description>The end plugin for Nukkit</description>
9+
<inceptionYear>2018</inceptionYear>
10+
<url>http://wode490390.cn/</url>
11+
<packaging>jar</packaging>
12+
<licenses>
13+
<license>
14+
<name>GNU General Public License, Version 3.0</name>
15+
<url>http://www.gnu.org/licenses/gpl.html</url>
16+
</license>
17+
</licenses>
18+
<properties>
19+
<maven.compiler.source>1.8</maven.compiler.source>
20+
<maven.compiler.target>1.8</maven.compiler.target>
21+
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
22+
</properties>
23+
<repositories>
24+
<repository>
25+
<id>nukkitx</id>
26+
<url>http://repo.nukkitx.com/main/</url>
27+
</repository>
28+
</repositories>
29+
<dependencies>
30+
<dependency>
31+
<groupId>cn.nukkit</groupId>
32+
<artifactId>nukkit</artifactId>
33+
<version>1.0-SNAPSHOT</version>
34+
<scope>provided</scope>
35+
</dependency>
36+
</dependencies>
37+
<build>
38+
<finalName>wodeTheEnd-${project.version}</finalName>
39+
<defaultGoal>clean package</defaultGoal>
40+
<resources>
41+
<resource>
42+
<targetPath>.</targetPath>
43+
<filtering>true</filtering>
44+
<directory>${basedir}/src/main/resources</directory>
45+
<includes>
46+
<include>*.yml</include>
47+
</includes>
48+
</resource>
49+
</resources>
50+
</build>
51+
</project>

0 commit comments

Comments
 (0)