Starlike v0.3.0
62
.github/workflows/build.yml
vendored
@ -19,26 +19,50 @@ jobs:
|
|||||||
uses: gradle/actions/wrapper-validation@v3
|
uses: gradle/actions/wrapper-validation@v3
|
||||||
- name: Compile JavaScript
|
- name: Compile JavaScript
|
||||||
run: ./gradlew generateJavaScript
|
run: ./gradlew generateJavaScript
|
||||||
- name: Compile assets
|
- name: Compile assets.epk
|
||||||
run: bash ./CompileEPK.sh
|
run: bash ./CompileEPK.sh
|
||||||
- name: Generate offline download
|
- name: Generate offline download - standard
|
||||||
if: github.ref != 'refs/heads/main'
|
if: github.ref != 'refs/heads/main'
|
||||||
run: bash ./MakeOfflineDownload.sh
|
run: bash ./MakeOfflineDownload.sh
|
||||||
- name: Generate signed client
|
- name: Generate offline download - signed
|
||||||
if: github.ref == 'refs/heads/main'
|
if: github.ref == 'refs/heads/main'
|
||||||
run: source ./SIGNED_CLIENT.env && echo -e "${{ vars.SIGNED_CLIENT_INPUT }}${{ secrets.SIGNED_CLIENT_SECRET }}" | bash ./MakeSignedClient.sh
|
|
||||||
- name: Prepare files - standard
|
|
||||||
if: github.ref != 'refs/heads/main'
|
|
||||||
run: |
|
run: |
|
||||||
mkdir -p ${{ runner.temp }}/gh-pages
|
source ./SIGNED_CLIENT.env &&
|
||||||
cp -t ${{ runner.temp }}/gh-pages \
|
SIGNED_CLIENT_INPUT="${{ vars.SIGNED_CLIENT_INPUT }}${{ secrets.SIGNED_CLIENT_SECRET }}" &&
|
||||||
javascript/assets.epk \
|
echo "$SIGNED_CLIENT_INPUT" | bash ./MakeSignedClient.sh &&
|
||||||
javascript/classes.js \
|
echo "$SIGNED_CLIENT_INPUT" | bash ./MakeSignedClient.sh
|
||||||
javascript/classes.js.map \
|
- name: Upload web files
|
||||||
javascript/favicon.png \
|
continue-on-error: true
|
||||||
|
uses: actions/upload-artifact@v4
|
||||||
|
with:
|
||||||
|
name: web
|
||||||
|
path: |
|
||||||
|
javascript/assets.epk
|
||||||
|
javascript/classes.js
|
||||||
|
javascript/classes.js.map
|
||||||
|
javascript/favicon.png
|
||||||
javascript/index.html
|
javascript/index.html
|
||||||
cp javascript/Starlike_Client_Offline.html ${{ runner.temp }}/gh-pages/offline.html
|
retention-days: 1
|
||||||
- name: Prepare files - signed
|
compression-level: 9
|
||||||
|
- name: Upload offline download - standard
|
||||||
|
if: github.ref != 'refs/heads/main'
|
||||||
|
continue-on-error: true
|
||||||
|
uses: actions/upload-artifact@v4
|
||||||
|
with:
|
||||||
|
name: offline
|
||||||
|
path: javascript/Starlike_Client_Offline.html
|
||||||
|
retention-days: 1
|
||||||
|
compression-level: 9
|
||||||
|
- name: Upload offline download - signed
|
||||||
|
if: github.ref == 'refs/heads/main'
|
||||||
|
continue-on-error: true
|
||||||
|
uses: actions/upload-artifact@v4
|
||||||
|
with:
|
||||||
|
name: offline_signed
|
||||||
|
path: javascript/Starlike_Client_Offline_Signed.html
|
||||||
|
retention-days: 1
|
||||||
|
compression-level: 9
|
||||||
|
- name: Prepare GitHub Pages
|
||||||
if: github.ref == 'refs/heads/main'
|
if: github.ref == 'refs/heads/main'
|
||||||
run: |
|
run: |
|
||||||
mkdir -p ${{ runner.temp }}/gh-pages
|
mkdir -p ${{ runner.temp }}/gh-pages
|
||||||
@ -50,21 +74,13 @@ jobs:
|
|||||||
javascript/index.html
|
javascript/index.html
|
||||||
cp javascript/Starlike_Client_Offline_Signed.html ${{ runner.temp }}/gh-pages/offline.html
|
cp javascript/Starlike_Client_Offline_Signed.html ${{ runner.temp }}/gh-pages/offline.html
|
||||||
cp javascript/Starlike_Client_Offline_Signed.html.dat ${{ runner.temp }}/gh-pages/latest_update.dat
|
cp javascript/Starlike_Client_Offline_Signed.html.dat ${{ runner.temp }}/gh-pages/latest_update.dat
|
||||||
- name: Upload web files
|
|
||||||
continue-on-error: true
|
|
||||||
uses: actions/upload-artifact@v4
|
|
||||||
with:
|
|
||||||
name: web_files
|
|
||||||
path: ${{ runner.temp }}/gh-pages
|
|
||||||
retention-days: 1
|
|
||||||
compression-level: 9
|
|
||||||
- name: Deploy to GitHub Pages
|
- name: Deploy to GitHub Pages
|
||||||
if: github.ref == 'refs/heads/main'
|
if: github.ref == 'refs/heads/main'
|
||||||
uses: peaceiris/actions-gh-pages@v4
|
uses: peaceiris/actions-gh-pages@v4
|
||||||
with:
|
with:
|
||||||
github_token: ${{ secrets.GITHUB_TOKEN }}
|
github_token: ${{ secrets.GITHUB_TOKEN }}
|
||||||
publish_dir: ${{ runner.temp }}/gh-pages
|
publish_dir: ${{ runner.temp }}/gh-pages
|
||||||
cname: starlike.orionzleon.me
|
cname: starlikeclient.com
|
||||||
force_orphan: true
|
force_orphan: true
|
||||||
user_name: 'github-actions[bot]'
|
user_name: 'github-actions[bot]'
|
||||||
user_email: '41898282+github-actions[bot]@users.noreply.github.com'
|
user_email: '41898282+github-actions[bot]@users.noreply.github.com'
|
||||||
|
2
.gitignore
vendored
@ -26,3 +26,5 @@ javascript/Starlike_Client_Offline_Signed.html.dat
|
|||||||
|
|
||||||
.metadata
|
.metadata
|
||||||
|
|
||||||
|
GenerateBlocks.py
|
||||||
|
EaglerTools
|
||||||
|
@ -1,2 +1,4 @@
|
|||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
|
echo "compiling, please wait..."
|
||||||
java -jar "desktopRuntime/CompileEPK.jar" "desktopRuntime/resources" "javascript/assets.epk"
|
java -jar "desktopRuntime/CompileEPK.jar" "desktopRuntime/resources" "javascript/assets.epk"
|
||||||
|
echo "finished compiling epk"
|
||||||
|
@ -158,6 +158,7 @@ The default eaglercraftXOpts values is this:
|
|||||||
- `demoMode:` whether to launch the game in java edition demo mode
|
- `demoMode:` whether to launch the game in java edition demo mode
|
||||||
- `servers:` a list of default servers to display on the Multiplayer screen
|
- `servers:` a list of default servers to display on the Multiplayer screen
|
||||||
- `relays:` the default list of shared world relays to use for invites
|
- `relays:` the default list of shared world relays to use for invites
|
||||||
|
- `checkGLErrors:` if the game should check for opengl errors
|
||||||
- `checkShaderGLErrors:` enables more verbose opengl error logging for the shaders
|
- `checkShaderGLErrors:` enables more verbose opengl error logging for the shaders
|
||||||
- `enableDownloadOfflineButton:` whether to show a "Download Offline" button on the title screen
|
- `enableDownloadOfflineButton:` whether to show a "Download Offline" button on the title screen
|
||||||
- `downloadOfflineButtonLink:` overrides the download link for the "Download Offline" button
|
- `downloadOfflineButtonLink:` overrides the download link for the "Download Offline" button
|
||||||
|
33
LICENSE.md
Normal file
@ -0,0 +1,33 @@
|
|||||||
|
# Starlike License
|
||||||
|
|
||||||
|
Copyright (c) 2024 zumbiepig and SpeedSlicer
|
||||||
|
|
||||||
|
## 1. Attribution
|
||||||
|
|
||||||
|
If you use any part of this code in your project, you **must credit** the original author, zumbiepig and SpeedSlicer, in a clearly visible manner in both the project documentation and the software interface, including but not limited to:
|
||||||
|
- **Credits section** in documentation
|
||||||
|
- **Main menu or splash screen** within the application
|
||||||
|
|
||||||
|
The **main menu** of the software or application **must not be changed** without written permission from zumbiepig and SpeedSlicer.
|
||||||
|
|
||||||
|
## 2. Open Source Requirement for Derivative Works
|
||||||
|
|
||||||
|
If you create any derivative work (a "fork") based on this project:
|
||||||
|
- You **must release the source code** of the derivative work under this same license, ensuring that all forks and modifications remain open source.
|
||||||
|
- You **must clearly state** that the original code is based on work by zumbiepig and SpeedSlicer.
|
||||||
|
|
||||||
|
## 3. Restrictions
|
||||||
|
|
||||||
|
- You are **not allowed to remove or alter any credits** to zumbiepig and SpeedSlicer in the code or the user interface.
|
||||||
|
- You **cannot distribute** any modified version of this code under a more restrictive license.
|
||||||
|
- Any attempts to circumvent or alter these licensing terms are strictly prohibited.
|
||||||
|
|
||||||
|
## 4. Warranty Disclaimer
|
||||||
|
|
||||||
|
This software is provided "as is", without any warranty of any kind, express or implied, including but not limited to the warranties of merchantability, fitness for a particular purpose, and non-infringement. In no event shall the author be liable for any claim, damages, or other liability, whether in an action of contract, tort, or otherwise, arising from, out of, or in connection with the software or the use or other dealings in the software.
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
License written by HoosierTransfer
|
||||||
|
|
||||||
|
By using this code, you agree to the terms of this license.
|
@ -1,3 +1,3 @@
|
|||||||
SIGNED_CLIENT_INTEGER="202"
|
SIGNED_CLIENT_INTEGER="300"
|
||||||
SIGNED_CLIENT_VERSION="0.2.2"
|
SIGNED_CLIENT_VERSION="0.3.0"
|
||||||
SIGNED_CLIENT_CHANGELOG="Mosaic bugfix"
|
SIGNED_CLIENT_CHANGELOG="Find the changelog in the Discord server!"
|
||||||
|
@ -1 +1 @@
|
|||||||
0.2.2
|
0.3.0
|
@ -10,7 +10,8 @@ if(typeof window !== "undefined") {
|
|||||||
}else {
|
}else {
|
||||||
var relayzId = Math.floor(Math.random() * 3);
|
var relayzId = Math.floor(Math.random() * 3);
|
||||||
window.eaglercraftXOpts = {
|
window.eaglercraftXOpts = {
|
||||||
container: "game_frame"
|
container: "game_frame",
|
||||||
|
enableSignatureBadge: true
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
window.addEventListener("load", function() {
|
window.addEventListener("load", function() {
|
||||||
|
@ -17,7 +17,8 @@
|
|||||||
|
|
||||||
window.eaglercraftXOptsHints = {
|
window.eaglercraftXOptsHints = {
|
||||||
hintsVersion: 1,
|
hintsVersion: 1,
|
||||||
container: "game_frame"
|
container: "game_frame",
|
||||||
|
enableSignatureBadge: true
|
||||||
};
|
};
|
||||||
|
|
||||||
// %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
// %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
||||||
|
@ -1,4 +1,14 @@
|
|||||||
|
|
||||||
|
Starlike Client
|
||||||
|
~~~~~~~~~~~~~~~~~~~~~~~
|
||||||
|
|
||||||
|
- SpeedSlicer - Owner
|
||||||
|
- zumbiepig - Co-Owner
|
||||||
|
- CatFoolYou - Texture artist
|
||||||
|
- Oeil-de-Lynx - Contributor
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
EaglercraftX Developers
|
EaglercraftX Developers
|
||||||
~~~~~~~~~~~~~~~~~~~~~~~
|
~~~~~~~~~~~~~~~~~~~~~~~
|
||||||
|
|
||||||
|
@ -31,24 +31,25 @@
|
|||||||
"forceWebViewSupport": false,
|
"forceWebViewSupport": false,
|
||||||
"enableServerCookies": true,
|
"enableServerCookies": true,
|
||||||
"enableDownloadOfflineButton": true,
|
"enableDownloadOfflineButton": true,
|
||||||
"downloadOfflineButtonLink": "https://starlike.orionzleon.me/offline.html",
|
"downloadOfflineButtonLink": null,
|
||||||
"resourcePacksDB": "resourcePacks_starlike",
|
"resourcePacksDB": "resourcePacks_starlike",
|
||||||
"enableWebViewCSP": true,
|
"enableWebViewCSP": true,
|
||||||
"checkRelaysForUpdates": true,
|
"checkRelaysForUpdates": true,
|
||||||
"allowServerRedirects": true,
|
"allowServerRedirects": true,
|
||||||
"allowUpdateSvc": true,
|
"allowUpdateSvc": true,
|
||||||
"html5CursorSupport": true,
|
"html5CursorSupport": false,
|
||||||
"allowFNAWSkins": true,
|
"allowFNAWSkins": true,
|
||||||
"allowVoiceClient": true,
|
"allowVoiceClient": true,
|
||||||
"worldsDB": "worlds_starlike",
|
"worldsDB": "worlds_starlike",
|
||||||
"demoMode": false,
|
"demoMode": false,
|
||||||
"localStorageNamespace": "_eaglercraftX_starlike",
|
"localStorageNamespace": "_eaglercraftX_starlike",
|
||||||
"enableSignatureBadge": true,
|
"enableSignatureBadge": false,
|
||||||
"lang": "en_US",
|
"lang": "en_US",
|
||||||
"enableMinceraft": true,
|
"enableMinceraft": true,
|
||||||
"autoFixLegacyStyleAttr": true,
|
"autoFixLegacyStyleAttr": true,
|
||||||
"allowUpdateDL": true,
|
"allowUpdateDL": true,
|
||||||
"logInvalidCerts": true,
|
"logInvalidCerts": true,
|
||||||
|
"checkGLErrors": false,
|
||||||
"checkShaderGLErrors": false,
|
"checkShaderGLErrors": false,
|
||||||
"crashOnUncaughtExceptions": false,
|
"crashOnUncaughtExceptions": false,
|
||||||
"forceWebGL1": false,
|
"forceWebGL1": false,
|
||||||
|
@ -718,24 +718,24 @@ tile.ice.name=Ice
|
|||||||
tile.icePacked.name=Packed Ice
|
tile.icePacked.name=Packed Ice
|
||||||
tile.cactus.name=Cactus
|
tile.cactus.name=Cactus
|
||||||
tile.clay.name=Clay
|
tile.clay.name=Clay
|
||||||
tile.clayHardenedStained.name=Stained Clay
|
tile.clayHardenedStained.name=Terracotta
|
||||||
tile.clayHardenedStained.black.name=Black Stained Clay
|
tile.clayHardenedStained.black.name=Black Terracotta
|
||||||
tile.clayHardenedStained.red.name=Red Stained Clay
|
tile.clayHardenedStained.red.name=Red Terracotta
|
||||||
tile.clayHardenedStained.green.name=Green Stained Clay
|
tile.clayHardenedStained.green.name=Green Terracotta
|
||||||
tile.clayHardenedStained.brown.name=Brown Stained Clay
|
tile.clayHardenedStained.brown.name=Brown Terracotta
|
||||||
tile.clayHardenedStained.blue.name=Blue Stained Clay
|
tile.clayHardenedStained.blue.name=Blue Terracotta
|
||||||
tile.clayHardenedStained.purple.name=Purple Stained Clay
|
tile.clayHardenedStained.purple.name=Purple Terracotta
|
||||||
tile.clayHardenedStained.cyan.name=Cyan Stained Clay
|
tile.clayHardenedStained.cyan.name=Cyan Terracotta
|
||||||
tile.clayHardenedStained.silver.name=Light Gray Stained Clay
|
tile.clayHardenedStained.silver.name=Light Gray Terracotta
|
||||||
tile.clayHardenedStained.gray.name=Gray Stained Clay
|
tile.clayHardenedStained.gray.name=Gray Terracotta
|
||||||
tile.clayHardenedStained.pink.name=Pink Stained Clay
|
tile.clayHardenedStained.pink.name=Pink Terracotta
|
||||||
tile.clayHardenedStained.lime.name=Lime Stained Clay
|
tile.clayHardenedStained.lime.name=Lime Terracotta
|
||||||
tile.clayHardenedStained.yellow.name=Yellow Stained Clay
|
tile.clayHardenedStained.yellow.name=Yellow Terracotta
|
||||||
tile.clayHardenedStained.lightBlue.name=Light Blue Stained Clay
|
tile.clayHardenedStained.lightBlue.name=Light Blue Terracotta
|
||||||
tile.clayHardenedStained.magenta.name=Magenta Stained Clay
|
tile.clayHardenedStained.magenta.name=Magenta Terracotta
|
||||||
tile.clayHardenedStained.orange.name=Orange Stained Clay
|
tile.clayHardenedStained.orange.name=Orange Terracotta
|
||||||
tile.clayHardenedStained.white.name=White Stained Clay
|
tile.clayHardenedStained.white.name=White Terracotta
|
||||||
tile.clayHardened.name=Hardened Clay
|
tile.clayHardened.name=Terracotta
|
||||||
tile.reeds.name=Sugar cane
|
tile.reeds.name=Sugar cane
|
||||||
tile.jukebox.name=Jukebox
|
tile.jukebox.name=Jukebox
|
||||||
tile.fence.name=Oak Fence
|
tile.fence.name=Oak Fence
|
||||||
@ -1912,7 +1912,7 @@ itemGroup.search=Search Items
|
|||||||
itemGroup.food=Foodstuffs
|
itemGroup.food=Foodstuffs
|
||||||
itemGroup.tools=Tools
|
itemGroup.tools=Tools
|
||||||
itemGroup.combat=Combat
|
itemGroup.combat=Combat
|
||||||
itemGroup.brewing=Brewing
|
itemGroup.brewing=Consumables
|
||||||
itemGroup.materials=Materials
|
itemGroup.materials=Materials
|
||||||
itemGroup.inventory=Survival Inventory
|
itemGroup.inventory=Survival Inventory
|
||||||
|
|
||||||
|
@ -1,427 +1,129 @@
|
|||||||
As seen on TV!
|
The teacher is behind u lil bro
|
||||||
Awesome!
|
The earth is flat
|
||||||
100% pure!
|
dont unstellar client
|
||||||
May contain nuts!
|
3 is too easy
|
||||||
More polygons!
|
nobody will get the reference
|
||||||
Moderately attractive!
|
Doxed
|
||||||
Limited edition!
|
georgeonchatgpt
|
||||||
Flashing letters!
|
I won't use chat gpt
|
||||||
It's here!
|
based
|
||||||
Best in class!
|
if two people like this then im leaking eaglercraft 1.21
|
||||||
It's finished!
|
(it will have jenny mod)
|
||||||
Kind of dragon free!
|
one more like
|
||||||
Excitement!
|
I like my cheese drippy bruh!
|
||||||
More than 500 sold!
|
why? ;-;
|
||||||
One of a kind!
|
cant do this one
|
||||||
Heaps of hits on YouTube!
|
100% a furry femboy
|
||||||
Indev!
|
echo client sucks
|
||||||
Spiders everywhere!
|
Freaky time >:)
|
||||||
Check it out!
|
Dinnerbone
|
||||||
Holy cow, man!
|
Diddy bone
|
||||||
It's a game!
|
Ain't no party like a Diddy Party!
|
||||||
Made in Sweden!
|
Sharing is caring! (unless its an std)
|
||||||
Uses LWJGL!
|
im gonna stop deleting messages
|
||||||
Reticulating splines!
|
Bigger than 2 inches!
|
||||||
Minecraft!
|
alr added
|
||||||
Yaaay!
|
Please Enjoy Nice Intimate Situations
|
||||||
Singleplayer!
|
>:)
|
||||||
Keyboard compatible!
|
this without the space ^
|
||||||
Ingots!
|
:D
|
||||||
Exploding creepers!
|
"Im NOT pulling out"
|
||||||
That's no moon!
|
opera is the best browser ever
|
||||||
l33t!
|
DIDDY DIDNT DO IT!
|
||||||
Create!
|
Freak off in 30 mins
|
||||||
Survive!
|
i wanna join
|
||||||
Dungeon!
|
Mom said it was my turn on the xbox
|
||||||
Exclusive!
|
what's the wifi password
|
||||||
The bee's knees!
|
ill check this in about 30-60 min
|
||||||
Closed source!
|
bruh
|
||||||
Classy!
|
I like turtles
|
||||||
Wow!
|
nigga
|
||||||
Not on steam!
|
They hit the north tower
|
||||||
Oh man!
|
Shut it
|
||||||
Awesome community!
|
stop the pings1!1!
|
||||||
Pixels!
|
Delete system32
|
||||||
Teetsuuuuoooo!
|
reverse yeeing
|
||||||
Kaaneeeedaaaa!
|
Hot single moms in your area
|
||||||
Now with difficulty!
|
interpropriate
|
||||||
Enhanced!
|
i've seen your search history.
|
||||||
90% bug free!
|
Hey kid, you want free candy?
|
||||||
Pretty!
|
clicked on it
|
||||||
12 herbs and spices!
|
9+10=21
|
||||||
Fat free!
|
i didn't know she was 16
|
||||||
Absolutely no memes!
|
What's this white stuff?
|
||||||
Free dental!
|
Is it just me, or are half of these splash texts deranged?
|
||||||
Ask your doctor!
|
teacher is coming
|
||||||
Minors welcome!
|
https://blocked.goguardian.com/
|
||||||
Cloud computing!
|
"Im sorry she didnt make it"
|
||||||
Legal in Finland!
|
includes bonzi buddy
|
||||||
Hard to label!
|
bro wake up its 2014
|
||||||
Technically good!
|
thick of it
|
||||||
Bringing home the bacon!
|
How thick?
|
||||||
Indie!
|
Hey everyone, Dan here from The Diamond Minecart
|
||||||
GOTY!
|
f to pay respects to zumbiepig for reviewing this full chat
|
||||||
Ceci n'est pas une title screen!
|
I love touching zumbies boosums
|
||||||
Euclidian!
|
https://www.reddit.com/r/eaglercraft/
|
||||||
Now in 3D!
|
FIEN FIEN FIEN
|
||||||
Inspirational!
|
No 😭
|
||||||
Herregud!
|
rizz mode deactivated
|
||||||
Complex cellular automata!
|
Dog eating cake in da frige
|
||||||
Yes, sir!
|
Why did Microsoft buy Minecraft for 2.5 Billion Dollars when they could have bought it for 30$?
|
||||||
Played by cowboys!
|
"According to all known laws of aviation, there is no way a bee should be able to fly. Its wings are too small to get its fat little body off the ground. The bee, of course, flies anyway because bees don't care what humans think is impossible." (We don't even have bees)
|
||||||
Now on OpenGL 3.2 core profile!
|
🤓 🖕
|
||||||
Thousands of colors!
|
i failed my art class, expect evil to happen
|
||||||
Try it!
|
#FREEDIDDY
|
||||||
Age of Wonders is better!
|
Aged like milk
|
||||||
Try the mushroom stew!
|
"can i milk you?"
|
||||||
Sensational!
|
punch a cow with a bucket
|
||||||
Hot tamale, hot hot tamale!
|
From the gyat, to sus, to the rizz, to the mew
|
||||||
Play him off, keyboard cat!
|
paul eagler 2: the revival
|
||||||
Guaranteed!
|
mom, the eaglercraft discord got taken down again
|
||||||
Macroscopic!
|
Title screen splash text
|
||||||
Bring it on!
|
once a skid, always a skid
|
||||||
Random splash!
|
Exercise? i thought u meant extra fries!
|
||||||
Call your mother!
|
I FUCKNG hate curious George
|
||||||
Monster infighting!
|
i hate neigbors
|
||||||
Loved by millions!
|
#zumbie on talk tuah podcast
|
||||||
Ultimate edition!
|
Lick Lick
|
||||||
Freaky!
|
This channel will close at 4:00PM (no this is not a splash). You will still be able to react after this time, so get your messages in!
|
||||||
You've got a brand new key!
|
Start spamming splash screen ideas
|
||||||
Water proof!
|
Peyton is gay
|
||||||
Uninflammable!
|
no spam
|
||||||
Whoa, dude!
|
i've been sitting at my computer for 1 hour just saying splashes.
|
||||||
All inclusive!
|
Group pissing in 5 mins
|
||||||
Tell your friends!
|
I haven't seen the outside world for 13 hours because I've been playing Minecraft.
|
||||||
NP is not in P!
|
touching grass? what a JOKE.
|
||||||
Music by C418!
|
discord.gg/starlike
|
||||||
Livestreamed!
|
How many dicks can i fit in my mouth?
|
||||||
Haunted!
|
I'm gonna test that.
|
||||||
Polynomial!
|
woah
|
||||||
Terrestrial!
|
HEEYY WHO DELETED THAT >:(
|
||||||
All is full of love!
|
no fake members!
|
||||||
Full of stars!
|
for christmas, i want jenny mod.
|
||||||
Scientific!
|
Jenny and Warden Hawk Tuah!
|
||||||
Not as cool as Spock!
|
(╯°□°)╯︵ ┻━┻
|
||||||
Collaborate and listen!
|
10 likes = my pfp be Zombie Pigman fr
|
||||||
Never dig down!
|
Jfkxicjglckfhtldj
|
||||||
Take frequent breaks!
|
same rules, 5 👍 to get added
|
||||||
Not linear!
|
better than 1.8
|
||||||
Han shot first!
|
Justin Client
|
||||||
Nice to meet you!
|
Simga!
|
||||||
Buckets of lava!
|
george is skid
|
||||||
Ride the pig!
|
IM IN YOUR WALLS
|
||||||
Larger than Earth!
|
Joy and Anxiety in a rap battle!!
|
||||||
sqrt(-1) love you!
|
skibidi toilet
|
||||||
Phobos anomaly!
|
8===D
|
||||||
Punching wood!
|
5 likes
|
||||||
Falling off cliffs!
|
placeholder i forgot to remove lmao
|
||||||
1% sugar!
|
¯\_(ツ)_/¯
|
||||||
150% hyperbole!
|
Make this a title screen splash
|
||||||
Synecdoche!
|
do i change to 4 👍
|
||||||
Let's danec!
|
Minecraftforfree.com
|
||||||
Seecret Friday update!
|
The Digital Millennium Copyright Act (DMCA) is a US law that protects copyright holders from online theft and infringement.
|
||||||
Reference implementation!
|
The Digital Millennium Copyright Act (DMCA) is a 1998 United States copyright law that implements two 1996 treaties of the World Intellectual Property Organization (WIPO). It criminalizes production and dissemination of technology, devices, or services intended to circumvent measures that control access to copyrighted works (commonly known as digital rights management or DRM). It also criminalizes the act of circumventing an access control, whether or not there is actual infringement of copyright itself. [citation needed] In addition, the DMCA heightens the penalties for copyright infringement on the Internet.[1][2] Passed on October 12, 1998, by a unanimous vote in the United States Senate and signed into law by President Bill Clinton on October 28, 1998, the DMCA amended Title 17 of the United States Code to extend the reach of copyright, while limiting the liability of the providers of online services for copyright infringement by their users.
|
||||||
Kiss the sky!
|
funny splash
|
||||||
20 GOTO 10!
|
Oiled up?
|
||||||
Verlet intregration!
|
lax1dude vs microsoft
|
||||||
Peter Griffin!
|
Hi everyone - random discord person
|
||||||
Do not distribute!
|
gg
|
||||||
Cogito ergo sum!
|
get this to 4 likes guys
|
||||||
4815162342 lines of code!
|
|
||||||
A skeleton popped out!
|
|
||||||
The sum of its parts!
|
|
||||||
BTAF used to be good!
|
|
||||||
I miss ADOM!
|
|
||||||
umop-apisdn!
|
|
||||||
OICU812!
|
|
||||||
Bring me Ray Cokes!
|
|
||||||
Finger-licking!
|
|
||||||
Thematic!
|
|
||||||
Pneumatic!
|
|
||||||
Sublime!
|
|
||||||
Octagonal!
|
|
||||||
Une baguette!
|
|
||||||
Gargamel plays it!
|
|
||||||
Rita is the new top dog!
|
|
||||||
SWM forever!
|
|
||||||
Representing Edsbyn!
|
|
||||||
Matt Damon!
|
|
||||||
Supercalifragilisticexpialidocious!
|
|
||||||
Consummate V's!
|
|
||||||
Cow Tools!
|
|
||||||
Double buffered!
|
|
||||||
Fan fiction!
|
|
||||||
Flaxkikare!
|
|
||||||
Jason! Jason! Jason!
|
|
||||||
Hotter than the sun!
|
|
||||||
Internet enabled!
|
|
||||||
Autonomous!
|
|
||||||
Engage!
|
|
||||||
Fantasy!
|
|
||||||
DRR! DRR! DRR!
|
|
||||||
Kick it root down!
|
|
||||||
Regional resources!
|
|
||||||
Woo, facepunch!
|
|
||||||
Woo, somethingawful!
|
|
||||||
Woo, tigsource!
|
|
||||||
Woo, worldofminecraft!
|
|
||||||
Woo, reddit!
|
|
||||||
Woo, 2pp!
|
|
||||||
Google anlyticsed!
|
|
||||||
Now supports åäö!
|
|
||||||
Give us Gordon!
|
|
||||||
Tip your waiter!
|
|
||||||
Very fun!
|
|
||||||
12345 is a bad password!
|
|
||||||
Vote for net neutrality!
|
|
||||||
Lives in a pineapple under the sea!
|
|
||||||
MAP11 has two names!
|
|
||||||
Omnipotent!
|
|
||||||
Gasp!
|
|
||||||
...!
|
|
||||||
Bees, bees, bees, bees!
|
|
||||||
Jag känner en bot!
|
|
||||||
This text is hard to read if you play the game at the default resolution, but at 1080p it's fine!
|
|
||||||
Haha, LOL!
|
|
||||||
Hampsterdance!
|
|
||||||
Menger sponge!
|
|
||||||
idspispopd!
|
|
||||||
Eple (original edit)!
|
|
||||||
So fresh, so clean!
|
|
||||||
Slow acting portals!
|
|
||||||
Try the Nether!
|
|
||||||
Don't look directly at the bugs!
|
|
||||||
Oh, ok, Pigmen!
|
|
||||||
Finally with ladders!
|
|
||||||
Scary!
|
|
||||||
Play Minecraft, Watch Topgear, Get Pig!
|
|
||||||
Twittered about!
|
|
||||||
Jump up, jump up, and get down!
|
|
||||||
Joel is neat!
|
|
||||||
A riddle, wrapped in a mystery!
|
|
||||||
This parrot is no more! It has ceased to be!
|
|
||||||
Welcome to your Doom!
|
|
||||||
Stay a while, stay forever!
|
|
||||||
Stay a while and listen!
|
|
||||||
Treatment for your rash!
|
|
||||||
"Autological" is!
|
|
||||||
Information wants to be free!
|
|
||||||
"Almost never" is an interesting concept!
|
|
||||||
Lots of truthiness!
|
|
||||||
The creeper is a spy!
|
|
||||||
Turing complete!
|
|
||||||
It's groundbreaking!
|
|
||||||
Let our battle's begin!
|
|
||||||
The sky is the limit!
|
|
||||||
Jeb has amazing hair!
|
|
||||||
Ryan also has amazing hair!
|
|
||||||
Casual gaming!
|
|
||||||
Undefeated!
|
|
||||||
Kinda like Lemmings!
|
|
||||||
Follow the train, CJ!
|
|
||||||
Leveraging synergy!
|
|
||||||
This message will never appear on the splash screen, isn't that weird?
|
|
||||||
DungeonQuest is unfair!
|
|
||||||
90210!
|
|
||||||
Check out the far lands!
|
|
||||||
Tyrion would love it!
|
|
||||||
Also try VVVVVV!
|
|
||||||
Also try Super Meat Boy!
|
|
||||||
Also try Terraria!
|
|
||||||
Also try Mount And Blade!
|
|
||||||
Also try Project Zomboid!
|
|
||||||
Also try World of Goo!
|
|
||||||
Also try Limbo!
|
|
||||||
Also try Pixeljunk Shooter!
|
|
||||||
Also try Braid!
|
|
||||||
That's super!
|
|
||||||
Bread is pain!
|
|
||||||
Read more books!
|
|
||||||
Khaaaaaaaaan!
|
|
||||||
Less addictive than TV Tropes!
|
|
||||||
More addictive than lemonade!
|
|
||||||
Bigger than a bread box!
|
|
||||||
Millions of peaches!
|
|
||||||
Fnord!
|
|
||||||
This is my true form!
|
|
||||||
Don't bother with the clones!
|
|
||||||
Pumpkinhead!
|
|
||||||
Made by Jeb!
|
|
||||||
Has an ending!
|
|
||||||
Finally complete!
|
|
||||||
Feature packed!
|
|
||||||
Boots with the fur!
|
|
||||||
Stop, hammertime!
|
|
||||||
Testificates!
|
|
||||||
Conventional!
|
|
||||||
Homeomorphic to a 3-sphere!
|
|
||||||
Doesn't avoid double negatives!
|
|
||||||
Place ALL the blocks!
|
|
||||||
Does barrel rolls!
|
|
||||||
Meeting expectations!
|
|
||||||
PC gaming since 1873!
|
|
||||||
Ghoughpteighbteau tchoghs!
|
|
||||||
Déjà vu!
|
|
||||||
Déjà vu!
|
|
||||||
Got your nose!
|
|
||||||
Haley loves Elan!
|
|
||||||
Afraid of the big, black bat!
|
|
||||||
Doesn't use the U-word!
|
|
||||||
Child's play!
|
|
||||||
See you next Friday or so!
|
|
||||||
From the streets of Södermalm!
|
|
||||||
150 bpm for 400000 minutes!
|
|
||||||
Technologic!
|
|
||||||
Funk soul brother!
|
|
||||||
Pumpa kungen!
|
|
||||||
日本ハロー!
|
|
||||||
한국 안녕하세요!
|
|
||||||
Helo Cymru!
|
|
||||||
Cześć Polsko!
|
|
||||||
你好中国!
|
|
||||||
Привет Россия!
|
|
||||||
Γεια σου Ελλάδα!
|
|
||||||
My life for Aiur!
|
|
||||||
Lennart lennart = new Lennart();
|
|
||||||
I see your vocabulary has improved!
|
|
||||||
Who put it there?
|
|
||||||
You can't explain that!
|
|
||||||
if not ok then return end
|
|
||||||
§1C§2o§3l§4o§5r§6m§7a§8t§9i§ac
|
|
||||||
§kFUNKY LOL
|
|
||||||
Big Pointy Teeth!
|
|
||||||
Bekarton guards the gate!
|
|
||||||
Mmmph, mmph!
|
|
||||||
Don't feed avocados to parrots!
|
|
||||||
Swords for everyone!
|
|
||||||
Plz reply to my tweet!
|
|
||||||
.party()!
|
|
||||||
Take her pillow!
|
|
||||||
Put that cookie down!
|
|
||||||
Pretty scary!
|
|
||||||
I have a suggestion.
|
|
||||||
Now with extra hugs!
|
|
||||||
Java 16 + 1 = 17!
|
|
||||||
Woah.
|
|
||||||
HURNERJSGER?
|
|
||||||
What's up, Doc?
|
|
||||||
Now contains 32 random daily cats!
|
|
||||||
That's Numberwang!
|
|
||||||
pls rt
|
|
||||||
Do you want to join my server?
|
|
||||||
Put a little fence around it!
|
|
||||||
Throw a blanket over it!
|
|
||||||
One day, somewhere in the future, my work will be quoted!
|
|
||||||
Now with additional stuff!
|
|
||||||
Extra things!
|
|
||||||
Yay, puppies for everyone!
|
|
||||||
So sweet, like a nice bon bon!
|
|
||||||
Very influential in its circle!
|
|
||||||
Now With Multiplayer!
|
|
||||||
Rise from your grave!
|
|
||||||
Warning! A huge battleship "STEVE" is approaching fast!
|
|
||||||
Blue warrior shot the food!
|
|
||||||
Run, coward! I hunger!
|
|
||||||
Flavor with no seasoning!
|
|
||||||
Strange, but not a stranger!
|
|
||||||
Tougher than diamonds, rich like cream!
|
|
||||||
It swings, it jives!
|
|
||||||
Cruising streets for gold!
|
|
||||||
Take an eggbeater and beat it against a skillet!
|
|
||||||
Make me a table, a funky table!
|
|
||||||
Take the elevator to the mezzanine!
|
|
||||||
Stop being reasonable, this is the Internet!
|
|
||||||
/give @a hugs 64
|
|
||||||
This is good for Realms.
|
|
||||||
Any computer is a laptop if you're brave enough!
|
|
||||||
Do it all, everything!
|
|
||||||
Where there is not light, there can spider!
|
|
||||||
GNU Terry Pratchett
|
|
||||||
More Digital!
|
|
||||||
doot doot
|
|
||||||
Falling with style!
|
|
||||||
There's no stopping the Trollmaso
|
|
||||||
Throw yourself at the ground and miss
|
|
||||||
Rule #1: it's never my fault
|
|
||||||
Replaced molten cheese with blood?
|
|
||||||
Absolutely fixed relatively broken coordinates
|
|
||||||
Boats FTW
|
|
||||||
Javalicious edition
|
|
||||||
Should not be played while driving
|
|
||||||
You're going too fast!
|
|
||||||
Don't feed chocolate to parrots!
|
|
||||||
The true meaning of covfefe
|
|
||||||
An illusion! What are you hiding?
|
|
||||||
Something's not quite right...
|
|
||||||
Thank you for the fish!
|
|
||||||
All rumors are true!
|
|
||||||
Truly gone fishing!
|
|
||||||
Rainbow turtle?
|
|
||||||
Something funny!
|
|
||||||
I need more context.
|
|
||||||
Ahhhhhh!
|
|
||||||
Don't worry, be happy!
|
|
||||||
Water bottle!
|
|
||||||
What's the question?
|
|
||||||
Plant a tree!
|
|
||||||
Go to the dentist!
|
|
||||||
What do you expect?
|
|
||||||
Look mum, I'm in a splash!
|
|
||||||
It came from space.
|
|
||||||
Awesome game design right there!
|
|
||||||
Ph1lza had a good run!
|
|
||||||
10 years of Mining and Crafting!
|
|
||||||
Ping the human!
|
|
||||||
In case it isn't obvious, foxes aren't players.
|
|
||||||
Buzzy Bees!
|
|
||||||
Minecraft Java Edition presents: Disgusting Bugs
|
|
||||||
Wash your hands!
|
|
||||||
Soap and water!
|
|
||||||
Support local businesses!
|
|
||||||
Stay home and play games!
|
|
||||||
Stay safe!
|
|
||||||
Stay strong!
|
|
||||||
Cough or sneeze into your elbow!
|
|
||||||
Don’t touch your face!
|
|
||||||
Support elderly relatives and friends!
|
|
||||||
Prepare, but don’t hoard!
|
|
||||||
Gamers unite – separately in your own homes!
|
|
||||||
Save the world – stay inside!
|
|
||||||
Shop for your elders!
|
|
||||||
Hang out with your friends online!
|
|
||||||
Honey, I grew the bees!
|
|
||||||
Find your claw!
|
|
||||||
Everybody do the Leif!
|
|
||||||
<3 Max & 99 & Ducky!
|
|
||||||
Bushy eyebrows!
|
|
||||||
Edit is a name!
|
|
||||||
From free range developers!
|
|
||||||
Music by Lena Raine!
|
|
||||||
Aww man!
|
|
||||||
#minecraftfarms
|
|
||||||
And my pickaxe!
|
|
||||||
Envision! Create! Share!
|
|
||||||
Fabulous graphics!
|
|
||||||
Also try Minecraft Dungeons!
|
|
||||||
Vanilla!
|
|
||||||
May contain traces of citrus!
|
|
||||||
Zoglin!?
|
|
||||||
Black lives matter!
|
|
||||||
Be anti-racist!
|
|
||||||
Learn about allyship!
|
|
||||||
Speak OUT against injustice and UP for equality!
|
|
||||||
Amplify and listen to BIPOC voices!
|
|
||||||
Educate your friends on anti-racism!
|
|
||||||
Support the BIPOC community and creators!
|
|
||||||
Stand up for equality in your community!
|
|
||||||
[this splash text is now available]
|
|
||||||
Contains simulated goats!
|
|
||||||
Home-made!
|
|
||||||
There's <<a cat on ,my keyboard!~
|
|
||||||
The cutest predator you'll ever meet!
|
|
||||||
Now you are thinking with pistons!
|
|
||||||
Get to the coppah!
|
|
||||||
Board game version also available!
|
|
||||||
Honey, I waxed the copper!
|
|
||||||
Plant-based light sources!
|
|
||||||
Made by "real" people!
|
|
@ -1,2 +1,2 @@
|
|||||||
# Change to 0 to disable blur
|
# Change to 0 to disable blur
|
||||||
enable_blur=1
|
enable_blur=0
|
Before Width: | Height: | Size: 1.2 MiB After Width: | Height: | Size: 258 KiB |
Before Width: | Height: | Size: 1.0 MiB After Width: | Height: | Size: 216 KiB |
Before Width: | Height: | Size: 887 KiB After Width: | Height: | Size: 206 KiB |
Before Width: | Height: | Size: 818 KiB After Width: | Height: | Size: 230 KiB |
Before Width: | Height: | Size: 25 KiB After Width: | Height: | Size: 2.0 KiB |
Before Width: | Height: | Size: 1.6 MiB After Width: | Height: | Size: 59 KiB |
Before Width: | Height: | Size: 5.5 KiB After Width: | Height: | Size: 131 KiB |
@ -0,0 +1,7 @@
|
|||||||
|
{
|
||||||
|
"variants": {
|
||||||
|
"normal": {
|
||||||
|
"model": "starlike:ancient_debris"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1,7 @@
|
|||||||
|
{
|
||||||
|
"variants": {
|
||||||
|
"normal": {
|
||||||
|
"model": "starlike:andesite_bricks"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1,7 @@
|
|||||||
|
{
|
||||||
|
"variants": {
|
||||||
|
"normal": {
|
||||||
|
"model": "starlike:andesite_tiles"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1,7 @@
|
|||||||
|
{
|
||||||
|
"variants": {
|
||||||
|
"normal": {
|
||||||
|
"model": "starlike:black_glazed_terracotta"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1,7 @@
|
|||||||
|
{
|
||||||
|
"variants": {
|
||||||
|
"normal": {
|
||||||
|
"model": "starlike:black_packed_terracotta"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1,7 @@
|
|||||||
|
{
|
||||||
|
"variants": {
|
||||||
|
"normal": {
|
||||||
|
"model": "starlike:black_planks"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1,7 @@
|
|||||||
|
{
|
||||||
|
"variants": {
|
||||||
|
"normal": {
|
||||||
|
"model": "starlike:black_terracotta_bricks"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1,7 @@
|
|||||||
|
{
|
||||||
|
"variants": {
|
||||||
|
"normal": {
|
||||||
|
"model": "starlike:blackstone"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1,7 @@
|
|||||||
|
{
|
||||||
|
"variants": {
|
||||||
|
"normal": {
|
||||||
|
"model": "starlike:blue_glazed_terracotta"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1,7 @@
|
|||||||
|
{
|
||||||
|
"variants": {
|
||||||
|
"normal": {
|
||||||
|
"model": "starlike:blue_packed_terracotta"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1,7 @@
|
|||||||
|
{
|
||||||
|
"variants": {
|
||||||
|
"normal": {
|
||||||
|
"model": "starlike:blue_planks"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1,7 @@
|
|||||||
|
{
|
||||||
|
"variants": {
|
||||||
|
"normal": {
|
||||||
|
"model": "starlike:blue_terracotta_bricks"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1,7 @@
|
|||||||
|
{
|
||||||
|
"variants": {
|
||||||
|
"normal": {
|
||||||
|
"model": "starlike:brown_glazed_terracotta"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1,7 @@
|
|||||||
|
{
|
||||||
|
"variants": {
|
||||||
|
"normal": {
|
||||||
|
"model": "starlike:brown_packed_terracotta"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1,7 @@
|
|||||||
|
{
|
||||||
|
"variants": {
|
||||||
|
"normal": {
|
||||||
|
"model": "starlike:brown_planks"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1,7 @@
|
|||||||
|
{
|
||||||
|
"variants": {
|
||||||
|
"normal": {
|
||||||
|
"model": "starlike:brown_terracotta_bricks"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1,7 @@
|
|||||||
|
{
|
||||||
|
"variants": {
|
||||||
|
"normal": {
|
||||||
|
"model": "starlike:calcite"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1,7 @@
|
|||||||
|
{
|
||||||
|
"variants": {
|
||||||
|
"normal": {
|
||||||
|
"model": "starlike:calcite_tiles"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1,7 @@
|
|||||||
|
{
|
||||||
|
"variants": {
|
||||||
|
"normal": {
|
||||||
|
"model": "starlike:chiseled_acacia_planks"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1,7 @@
|
|||||||
|
{
|
||||||
|
"variants": {
|
||||||
|
"normal": {
|
||||||
|
"model": "starlike:chiseled_bamboo_planks"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1,7 @@
|
|||||||
|
{
|
||||||
|
"variants": {
|
||||||
|
"normal": {
|
||||||
|
"model": "starlike:chiseled_birch_planks"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1,7 @@
|
|||||||
|
{
|
||||||
|
"variants": {
|
||||||
|
"normal": {
|
||||||
|
"model": "starlike:chiseled_cherry_planks"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1,7 @@
|
|||||||
|
{
|
||||||
|
"variants": {
|
||||||
|
"normal": {
|
||||||
|
"model": "starlike:chiseled_copper"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1,7 @@
|
|||||||
|
{
|
||||||
|
"variants": {
|
||||||
|
"normal": {
|
||||||
|
"model": "starlike:chiseled_crimson_planks"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1,7 @@
|
|||||||
|
{
|
||||||
|
"variants": {
|
||||||
|
"normal": {
|
||||||
|
"model": "starlike:chiseled_dark_oak_planks"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1,7 @@
|
|||||||
|
{
|
||||||
|
"variants": {
|
||||||
|
"normal": {
|
||||||
|
"model": "starlike:chiseled_deep_ocean_bricks"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1,7 @@
|
|||||||
|
{
|
||||||
|
"variants": {
|
||||||
|
"normal": {
|
||||||
|
"model": "starlike:chiseled_jungle_planks"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1,7 @@
|
|||||||
|
{
|
||||||
|
"variants": {
|
||||||
|
"normal": {
|
||||||
|
"model": "starlike:chiseled_mangrove_planks"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1,7 @@
|
|||||||
|
{
|
||||||
|
"variants": {
|
||||||
|
"normal": {
|
||||||
|
"model": "starlike:chiseled_oak_planks"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1,7 @@
|
|||||||
|
{
|
||||||
|
"variants": {
|
||||||
|
"normal": {
|
||||||
|
"model": "starlike:chiseled_polished_blackstone"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1,7 @@
|
|||||||
|
{
|
||||||
|
"variants": {
|
||||||
|
"normal": {
|
||||||
|
"model": "starlike:chiseled_spruce_planks"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1,7 @@
|
|||||||
|
{
|
||||||
|
"variants": {
|
||||||
|
"normal": {
|
||||||
|
"model": "starlike:chiseled_tuff"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1,7 @@
|
|||||||
|
{
|
||||||
|
"variants": {
|
||||||
|
"normal": {
|
||||||
|
"model": "starlike:chiseled_tuff_bricks"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1,7 @@
|
|||||||
|
{
|
||||||
|
"variants": {
|
||||||
|
"normal": {
|
||||||
|
"model": "starlike:chiseled_tuff_top"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1,7 @@
|
|||||||
|
{
|
||||||
|
"variants": {
|
||||||
|
"normal": {
|
||||||
|
"model": "starlike:chiseled_warped_planks"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1,7 @@
|
|||||||
|
{
|
||||||
|
"variants": {
|
||||||
|
"normal": {
|
||||||
|
"model": "starlike:cobbled_andesite"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1,5 @@
|
|||||||
|
{
|
||||||
|
"variants": {
|
||||||
|
"normal": { "model": "starlike:cobbled_deepslate" }
|
||||||
|
}
|
||||||
|
}
|
@ -1,5 +0,0 @@
|
|||||||
{
|
|
||||||
"variants": {
|
|
||||||
"normal": { "model": "starlike:cobbled_deepstone" }
|
|
||||||
}
|
|
||||||
}
|
|
@ -0,0 +1,7 @@
|
|||||||
|
{
|
||||||
|
"variants": {
|
||||||
|
"normal": {
|
||||||
|
"model": "starlike:cobbled_diorite"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1,7 @@
|
|||||||
|
{
|
||||||
|
"variants": {
|
||||||
|
"normal": {
|
||||||
|
"model": "starlike:cobbled_granite"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1,7 @@
|
|||||||
|
{
|
||||||
|
"variants": {
|
||||||
|
"normal": {
|
||||||
|
"model": "starlike:cobbled_soul_stone"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1,7 @@
|
|||||||
|
{
|
||||||
|
"variants": {
|
||||||
|
"normal": {
|
||||||
|
"model": "starlike:copper"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1,7 @@
|
|||||||
|
{
|
||||||
|
"variants": {
|
||||||
|
"normal": {
|
||||||
|
"model": "starlike:copper_block"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1,7 @@
|
|||||||
|
{
|
||||||
|
"variants": {
|
||||||
|
"normal": {
|
||||||
|
"model": "starlike:copper_grate"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1,7 @@
|
|||||||
|
{
|
||||||
|
"variants": {
|
||||||
|
"normal": {
|
||||||
|
"model": "starlike:copper_ore"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1,7 @@
|
|||||||
|
{
|
||||||
|
"variants": {
|
||||||
|
"normal": {
|
||||||
|
"model": "starlike:cracked_blackstone"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1,7 @@
|
|||||||
|
{
|
||||||
|
"variants": {
|
||||||
|
"normal": {
|
||||||
|
"model": "starlike:cracked_polished_blackstone_bricks"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1,7 @@
|
|||||||
|
{
|
||||||
|
"variants": {
|
||||||
|
"normal": {
|
||||||
|
"model": "starlike:creeper_chiseled_sandstone"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1,7 @@
|
|||||||
|
{
|
||||||
|
"variants": {
|
||||||
|
"normal": {
|
||||||
|
"model": "starlike:cut_copper"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1,7 @@
|
|||||||
|
{
|
||||||
|
"variants": {
|
||||||
|
"normal": {
|
||||||
|
"model": "starlike:cyan_glazed_terracotta"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1,7 @@
|
|||||||
|
{
|
||||||
|
"variants": {
|
||||||
|
"normal": {
|
||||||
|
"model": "starlike:cyan_packed_terracotta"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1,7 @@
|
|||||||
|
{
|
||||||
|
"variants": {
|
||||||
|
"normal": {
|
||||||
|
"model": "starlike:cyan_planks"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1,7 @@
|
|||||||
|
{
|
||||||
|
"variants": {
|
||||||
|
"normal": {
|
||||||
|
"model": "starlike:cyan_terracotta_bricks"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1,7 @@
|
|||||||
|
{
|
||||||
|
"variants": {
|
||||||
|
"normal": {
|
||||||
|
"model": "starlike:decorated_acacia_log"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1,7 @@
|
|||||||
|
{
|
||||||
|
"variants": {
|
||||||
|
"normal": {
|
||||||
|
"model": "starlike:decorated_acacia_planks"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1,7 @@
|
|||||||
|
{
|
||||||
|
"variants": {
|
||||||
|
"normal": {
|
||||||
|
"model": "starlike:decorated_birch_log"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1,7 @@
|
|||||||
|
{
|
||||||
|
"variants": {
|
||||||
|
"normal": {
|
||||||
|
"model": "starlike:decorated_birch_planks"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1,7 @@
|
|||||||
|
{
|
||||||
|
"variants": {
|
||||||
|
"normal": {
|
||||||
|
"model": "starlike:decorated_dark_oak_log"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1,7 @@
|
|||||||
|
{
|
||||||
|
"variants": {
|
||||||
|
"normal": {
|
||||||
|
"model": "starlike:decorated_dark_oak_planks"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1,7 @@
|
|||||||
|
{
|
||||||
|
"variants": {
|
||||||
|
"normal": {
|
||||||
|
"model": "starlike:decorated_jungle_log"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1,7 @@
|
|||||||
|
{
|
||||||
|
"variants": {
|
||||||
|
"normal": {
|
||||||
|
"model": "starlike:decorated_jungle_planks"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1,7 @@
|
|||||||
|
{
|
||||||
|
"variants": {
|
||||||
|
"normal": {
|
||||||
|
"model": "starlike:decorated_oak_log"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1,7 @@
|
|||||||
|
{
|
||||||
|
"variants": {
|
||||||
|
"normal": {
|
||||||
|
"model": "starlike:decorated_oak_planks"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1,7 @@
|
|||||||
|
{
|
||||||
|
"variants": {
|
||||||
|
"normal": {
|
||||||
|
"model": "starlike:decorated_red_sandstone"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1,7 @@
|
|||||||
|
{
|
||||||
|
"variants": {
|
||||||
|
"normal": {
|
||||||
|
"model": "starlike:decorated_sandstone"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1,7 @@
|
|||||||
|
{
|
||||||
|
"variants": {
|
||||||
|
"normal": {
|
||||||
|
"model": "starlike:decorated_spruce_log"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1,7 @@
|
|||||||
|
{
|
||||||
|
"variants": {
|
||||||
|
"normal": {
|
||||||
|
"model": "starlike:decorated_spruce_planks"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1,7 @@
|
|||||||
|
{
|
||||||
|
"variants": {
|
||||||
|
"normal": {
|
||||||
|
"model": "starlike:decorated_stripped_acacia_log"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1,7 @@
|
|||||||
|
{
|
||||||
|
"variants": {
|
||||||
|
"normal": {
|
||||||
|
"model": "starlike:decorated_stripped_birch_log"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1,7 @@
|
|||||||
|
{
|
||||||
|
"variants": {
|
||||||
|
"normal": {
|
||||||
|
"model": "starlike:decorated_stripped_dark_oak_log"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1,7 @@
|
|||||||
|
{
|
||||||
|
"variants": {
|
||||||
|
"normal": {
|
||||||
|
"model": "starlike:decorated_stripped_jungle_log"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1,7 @@
|
|||||||
|
{
|
||||||
|
"variants": {
|
||||||
|
"normal": {
|
||||||
|
"model": "starlike:decorated_stripped_oak_log"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1,7 @@
|
|||||||
|
{
|
||||||
|
"variants": {
|
||||||
|
"normal": {
|
||||||
|
"model": "starlike:decorated_stripped_spruce_log"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1,7 @@
|
|||||||
|
{
|
||||||
|
"variants": {
|
||||||
|
"normal": {
|
||||||
|
"model": "starlike:deep_ocean_bricks"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1,5 @@
|
|||||||
|
{
|
||||||
|
"variants": {
|
||||||
|
"normal": { "model": "starlike:deepslate" }
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1,7 @@
|
|||||||
|
{
|
||||||
|
"variants": {
|
||||||
|
"normal": {
|
||||||
|
"model": "starlike:deepslate_copper_ore"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
@ -1,5 +0,0 @@
|
|||||||
{
|
|
||||||
"variants": {
|
|
||||||
"normal": { "model": "starlike:deepstone" }
|
|
||||||
}
|
|
||||||
}
|
|
@ -0,0 +1,7 @@
|
|||||||
|
{
|
||||||
|
"variants": {
|
||||||
|
"normal": {
|
||||||
|
"model": "starlike:diorite_tiles"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1,5 @@
|
|||||||
|
{
|
||||||
|
"variants": {
|
||||||
|
"normal": { "model": "starlike:dragonite_block" }
|
||||||
|
}
|
||||||
|
}
|