added filter texture

This commit is contained in:
absolutewitch 2026-04-03 04:35:52 +03:00
parent 9fa293f93c
commit 37f0bab173
86 changed files with 4226 additions and 19 deletions

View file

@ -0,0 +1,10 @@
commonProperties
fabric.development=true
fabric.remapClasspathFile=/home/irene/MCreatorWorkspaces/landanaleaf/.gradle/loom-cache/remapClasspath.txt
log4j.configurationFile=/home/irene/MCreatorWorkspaces/landanaleaf/.gradle/loom-cache/log4j.xml
log4j2.formatMsgNoLookups=true
clientArgs
--assetIndex
1.21.8-26
--assetsDir
/home/irene/.mcreator/gradle/caches/fabric-loom/assets

View file

@ -0,0 +1,69 @@
<?xml version="1.0" encoding="UTF-8"?>
<Configuration status="WARN">
<Appenders>
<!-- System out -->
<Console name="SysOut" target="SYSTEM_OUT">
<!-- Filter out the authentication errors when starting in development -->
<Filters>
<RegexFilter regex="^Failed to verify authentication$" onMatch="DENY" onMismatch="NEUTRAL"/>
<RegexFilter regex="^Failed to fetch user properties$" onMatch="DENY" onMismatch="NEUTRAL"/>
<RegexFilter regex="^Couldn't connect to realms$" onMatch="DENY" onMismatch="NEUTRAL"/>
<RegexFilter regex="^Failed to fetch Realms feature flags$" onMatch="DENY" onMismatch="NEUTRAL"/>
</Filters>
<PatternLayout>
<LoggerNamePatternSelector defaultPattern="%style{[%d{HH:mm:ss}]}{blue} %highlight{[%t/%level]}{FATAL=red, ERROR=red, WARN=yellow, INFO=green, DEBUG=green, TRACE=blue} %style{(%logger{1})}{cyan} %highlight{%msg%n}{FATAL=red, ERROR=red, WARN=normal, INFO=normal, DEBUG=normal, TRACE=normal}" disableAnsi="${sys:fabric.log.disableAnsi:-true}">
<!-- Dont show the logger name for minecraft classes-->
<PatternMatch key="net.minecraft.,com.mojang." pattern="%style{[%d{HH:mm:ss}]}{blue} %highlight{[%t/%level]}{FATAL=red, ERROR=red, WARN=yellow, INFO=green, DEBUG=green, TRACE=blue} %style{(Minecraft)}{cyan} %highlight{%msg{nolookups}%n}{FATAL=red, ERROR=red, WARN=normal, INFO=normal, DEBUG=normal, TRACE=normal}"/>
</LoggerNamePatternSelector>
</PatternLayout>
</Console>
<!-- Vanilla server gui -->
<Queue name="ServerGuiConsole" ignoreExceptions="true">
<PatternLayout>
<LoggerNamePatternSelector defaultPattern="[%d{HH:mm:ss} %level] (%logger{1}) %msg{nolookups}%n">
<!-- Dont show the logger name for minecraft classes-->
<PatternMatch key="net.minecraft.,com.mojang." pattern="[%d{HH:mm:ss} %level] %msg{nolookups}%n"/>
</LoggerNamePatternSelector>
</PatternLayout>
</Queue>
<!-- latest.log same as vanilla -->
<RollingRandomAccessFile name="LatestFile" fileName="logs/latest.log" filePattern="logs/%d{yyyy-MM-dd}-%i.log.gz">
<PatternLayout>
<LoggerNamePatternSelector defaultPattern="[%d{HH:mm:ss}] [%t/%level] (%logger{1}) %msg{nolookups}%n">
<!-- Dont show the logger name for minecraft classes-->
<PatternMatch key="net.minecraft.,com.mojang." pattern="[%d{HH:mm:ss}] [%t/%level] (Minecraft) %msg{nolookups}%n"/>
</LoggerNamePatternSelector>
</PatternLayout>
<Policies>
<TimeBasedTriggeringPolicy />
<OnStartupTriggeringPolicy />
</Policies>
</RollingRandomAccessFile>
<!-- Debug log file -->
<RollingRandomAccessFile name="DebugFile" fileName="logs/debug.log" filePattern="logs/debug-%i.log.gz">
<PatternLayout pattern="[%d{HH:mm:ss}] [%t/%level] (%logger) %msg{nolookups}%n" />
<!-- Keep 5 files max -->
<DefaultRolloverStrategy max="5" fileIndex="min"/>
<Policies>
<SizeBasedTriggeringPolicy size="200MB"/>
<OnStartupTriggeringPolicy />
</Policies>
</RollingRandomAccessFile>
</Appenders>
<Loggers>
<Logger level="${sys:fabric.log.level:-info}" name="net.minecraft"/>
<Root level="all">
<AppenderRef ref="DebugFile" level="${sys:fabric.log.debug.level:-debug}"/>
<AppenderRef ref="SysOut" level="${sys:fabric.log.level:-info}"/>
<AppenderRef ref="LatestFile" level="${sys:fabric.log.level:-info}"/>
<AppenderRef ref="ServerGuiConsole" level="${sys:fabric.log.level:-info}"/>
</Root>
</Loggers>
</Configuration>

File diff suppressed because one or more lines are too long

Binary file not shown.

After

Width:  |  Height:  |  Size: 359 B

View file

@ -0,0 +1,128 @@
{
"mod_elements": [
{
"name": "LandanaSeed",
"type": "item",
"compiles": true,
"locked_code": false,
"registry_name": "landana_seed",
"metadata": {
"files": [
"src/main/resources/assets/landanaleaf/items/landana_seed.json",
"src/main/resources/assets/landanaleaf/models/item/landana_seed.json",
"src/main/java/net/mcreator/landanaleaf/item/LandanaSeedItem.java"
]
}
},
{
"name": "LandanaBudCured",
"type": "item",
"compiles": true,
"locked_code": false,
"registry_name": "landana_bud_cured",
"metadata": {
"files": [
"src/main/java/net/mcreator/landanaleaf/item/LandanaBudCuredItem.java",
"src/main/resources/assets/landanaleaf/models/item/landana_bud_cured.json",
"src/main/resources/assets/landanaleaf/items/landana_bud_cured.json"
]
}
},
{
"name": "LandanaBudRaw",
"type": "item",
"compiles": true,
"locked_code": false,
"registry_name": "landana_bud_raw",
"metadata": {
"files": [
"src/main/java/net/mcreator/landanaleaf/item/LandanaBudRawItem.java",
"src/main/resources/assets/landanaleaf/models/item/landana_bud_raw.json",
"src/main/resources/assets/landanaleaf/items/landana_bud_raw.json"
]
}
},
{
"name": "CuringBudSmoker",
"type": "recipe",
"compiles": true,
"locked_code": false,
"registry_name": "curing_bud_smoker",
"metadata": {
"files": [
"src/main/resources/data/landanaleaf/recipe/curing_bud_smoker.json",
"src/main/resources/data/landanaleaf/advancement/recipes/curing_bud_smoker.json"
]
}
},
{
"name": "CuringBudCampfire",
"type": "recipe",
"compiles": true,
"locked_code": false,
"registry_name": "curing_bud_campfire",
"metadata": {
"files": [
"src/main/resources/data/landanaleaf/recipe/curing_bud_campfire.json",
"src/main/resources/data/landanaleaf/advancement/recipes/curing_bud_campfire.json"
]
}
}
],
"variable_elements": [],
"sound_elements": [],
"tag_elements": {},
"tab_element_order": {},
"language_map": {
"en_us": {
"item.landanaleaf.landana_seed": "Landana Seed",
"item.landanaleaf.landana_bud_cured": "Landana Bud Cured",
"item.landanaleaf.landana_bud_raw": "Landana Bud Raw"
}
},
"metadata": {
"files": [
"src/main/java/net/mcreator/landanaleaf/init/LandanaleafModItems.java",
"src/main/java/net/mcreator/landanaleaf/mixin/ServerPlayerMixin.java",
"src/main/java/net/mcreator/landanaleaf/mixin/RepairItemRecipeMixin.java",
"src/main/resources/landanaleaf.mixins.json",
"src/main/java/net/mcreator/landanaleaf/mixin/ItemStackMixin.java",
"src/main/java/net/mcreator/landanaleaf/event/BlockEvents.java",
"src/main/java/net/mcreator/landanaleaf/mixin/LivingEntityMixin.java",
"src/main/java/net/mcreator/landanaleaf/mixin/BlockItemMixin.java",
"src/main/java/net/mcreator/landanaleaf/mixin/PlayerMixin.java",
"src/main/java/net/mcreator/landanaleaf/LandanaleafModClient.java",
"src/main/resources/pack.mcmeta",
"src/main/java/net/mcreator/landanaleaf/event/PlayerEvents.java",
"src/main/java/net/mcreator/landanaleaf/mixin/ExperienceOrbMixin.java",
"src/main/java/net/mcreator/landanaleaf/mixin/BoneMealItemMixin.java",
"src/main/resources/META-INF/landanaleaf.accesswidener",
"src/main/resources/fabric.mod.json",
"src/main/java/net/mcreator/landanaleaf/mixin/CommandsMixin.java",
"src/main/java/net/mcreator/landanaleaf/event/MiscEvents.java",
"src/main/java/net/mcreator/landanaleaf/event/LivingEntityEvents.java",
"src/main/java/net/mcreator/landanaleaf/event/ItemEvents.java",
"src/main/java/net/mcreator/landanaleaf/LandanaleafMod.java"
]
},
"foldersRoot": {
"name": "~",
"children": []
},
"workspaceSettings": {
"modid": "landanaleaf",
"modName": "LandanaLeaf",
"version": "1.0.0",
"author": "MCreator",
"websiteURL": "https://mcreator.net",
"license": "Not specified",
"serverSideOnly": false,
"requiredMods": [],
"dependencies": [],
"dependants": [],
"mcreatorDependencies": [],
"currentGenerator": "fabric-1.21.8",
"modElementsPackage": "net.mcreator.landanaleaf"
},
"mcreatorVersion": 202500345720
}

View file

@ -0,0 +1,140 @@
{
"mod_elements": [
{
"name": "LandanaSeed",
"type": "item",
"compiles": true,
"locked_code": false,
"registry_name": "landana_seed",
"metadata": {
"files": [
"src/main/resources/assets/landanaleaf/items/landana_seed.json",
"src/main/resources/assets/landanaleaf/models/item/landana_seed.json",
"src/main/java/net/mcreator/landanaleaf/item/LandanaSeedItem.java"
]
}
},
{
"name": "LandanaBudCured",
"type": "item",
"compiles": true,
"locked_code": false,
"registry_name": "landana_bud_cured",
"metadata": {
"files": [
"src/main/java/net/mcreator/landanaleaf/item/LandanaBudCuredItem.java",
"src/main/resources/assets/landanaleaf/models/item/landana_bud_cured.json",
"src/main/resources/assets/landanaleaf/items/landana_bud_cured.json"
]
}
},
{
"name": "LandanaBudRaw",
"type": "item",
"compiles": true,
"locked_code": false,
"registry_name": "landana_bud_raw",
"metadata": {
"files": [
"src/main/java/net/mcreator/landanaleaf/item/LandanaBudRawItem.java",
"src/main/resources/assets/landanaleaf/models/item/landana_bud_raw.json",
"src/main/resources/assets/landanaleaf/items/landana_bud_raw.json"
]
}
},
{
"name": "CuringBudSmoker",
"type": "recipe",
"compiles": true,
"locked_code": false,
"registry_name": "curing_bud_smoker",
"metadata": {
"files": [
"src/main/resources/data/landanaleaf/recipe/curing_bud_smoker.json",
"src/main/resources/data/landanaleaf/advancement/recipes/curing_bud_smoker.json"
]
}
},
{
"name": "CuringBudCampfire",
"type": "recipe",
"compiles": true,
"locked_code": false,
"registry_name": "curing_bud_campfire",
"metadata": {
"files": [
"src/main/resources/data/landanaleaf/recipe/curing_bud_campfire.json",
"src/main/resources/data/landanaleaf/advancement/recipes/curing_bud_campfire.json"
]
}
},
{
"name": "LandanaTab",
"type": "tab",
"compiles": true,
"locked_code": false,
"registry_name": "landana_tab",
"metadata": {
"files": []
}
}
],
"variable_elements": [],
"sound_elements": [],
"tag_elements": {},
"tab_element_order": {},
"language_map": {
"en_us": {
"item.landanaleaf.landana_seed": "Landana Seed",
"item.landanaleaf.landana_bud_cured": "Landana Bud Cured",
"item.landanaleaf.landana_bud_raw": "Landana Bud Raw",
"item_group.landanaleaf.landana_tab": "Landana Leaf"
}
},
"metadata": {
"files": [
"src/main/java/net/mcreator/landanaleaf/init/LandanaleafModItems.java",
"src/main/java/net/mcreator/landanaleaf/mixin/ServerPlayerMixin.java",
"src/main/java/net/mcreator/landanaleaf/mixin/RepairItemRecipeMixin.java",
"src/main/resources/landanaleaf.mixins.json",
"src/main/java/net/mcreator/landanaleaf/mixin/ItemStackMixin.java",
"src/main/java/net/mcreator/landanaleaf/event/BlockEvents.java",
"src/main/java/net/mcreator/landanaleaf/init/LandanaleafModTabs.java",
"src/main/java/net/mcreator/landanaleaf/mixin/LivingEntityMixin.java",
"src/main/java/net/mcreator/landanaleaf/mixin/BlockItemMixin.java",
"src/main/java/net/mcreator/landanaleaf/mixin/PlayerMixin.java",
"src/main/java/net/mcreator/landanaleaf/LandanaleafModClient.java",
"src/main/resources/pack.mcmeta",
"src/main/java/net/mcreator/landanaleaf/event/PlayerEvents.java",
"src/main/java/net/mcreator/landanaleaf/mixin/ExperienceOrbMixin.java",
"src/main/java/net/mcreator/landanaleaf/mixin/BoneMealItemMixin.java",
"src/main/resources/META-INF/landanaleaf.accesswidener",
"src/main/resources/fabric.mod.json",
"src/main/java/net/mcreator/landanaleaf/mixin/CommandsMixin.java",
"src/main/java/net/mcreator/landanaleaf/event/MiscEvents.java",
"src/main/java/net/mcreator/landanaleaf/event/LivingEntityEvents.java",
"src/main/java/net/mcreator/landanaleaf/event/ItemEvents.java",
"src/main/java/net/mcreator/landanaleaf/LandanaleafMod.java"
]
},
"foldersRoot": {
"name": "~",
"children": []
},
"workspaceSettings": {
"modid": "landanaleaf",
"modName": "LandanaLeaf",
"version": "1.0.0",
"author": "MCreator",
"websiteURL": "https://mcreator.net",
"license": "Not specified",
"serverSideOnly": false,
"requiredMods": [],
"dependencies": [],
"dependants": [],
"mcreatorDependencies": [],
"currentGenerator": "fabric-1.21.8",
"modElementsPackage": "net.mcreator.landanaleaf"
},
"mcreatorVersion": 202500345720
}

File diff suppressed because one or more lines are too long

View file

@ -646,7 +646,7 @@ code + .copy-button {
<script type="text/javascript"> <script type="text/javascript">
function configurationCacheProblems() { return ( function configurationCacheProblems() { return (
// begin-report-data // begin-report-data
{"diagnostics":[{"problem":[{"text":"Specifying 'org.gradle.java.installations.auto-detect' as a project property on the command line has been deprecated."}],"severity":"WARNING","problemDetails":[{"text":"This is scheduled to be removed in Gradle 10."}],"contextualLabel":"Specifying 'org.gradle.java.installations.auto-detect' as a project property on the command line has been deprecated.","documentationLink":"https://docs.gradle.org/9.2.0/userguide/upgrading_version_9.html#toolchain-project-properties","problemId":[{"name":"deprecation","displayName":"Deprecation"},{"name":"specifying-org-gradle-java-installations-auto-detect-as-a-project-property-on-the-command-line","displayName":"Specifying 'org.gradle.java.installations.auto-detect' as a project property on the command line has been deprecated."}],"solutions":[[{"text":"Instead, specify it as a Gradle property: '-Dorg.gradle.java.installations.auto-detect=false'."}]]},{"locations":[{"path":"/home/irene/MCreatorWorkspaces/landanaleaf/src/main/java/net/mcreator/landanaleaf/init/LandanaleafModItems.java"},{"taskPath":":compileJava"}],"problem":[{"text":"/home/irene/MCreatorWorkspaces/landanaleaf/src/main/java/net/mcreator/landanaleaf/init/LandanaleafModItems.java uses unchecked or unsafe operations."}],"severity":"ADVICE","problemDetails":[{"text":"Note: /home/irene/MCreatorWorkspaces/landanaleaf/src/main/java/net/mcreator/landanaleaf/init/LandanaleafModItems.java uses unchecked or unsafe operations."}],"contextualLabel":"/home/irene/MCreatorWorkspaces/landanaleaf/src/main/java/net/mcreator/landanaleaf/init/LandanaleafModItems.java uses unchecked or unsafe operations.","problemId":[{"name":"java","displayName":"Java compilation"},{"name":"compilation","displayName":"Compilation"},{"name":"compiler.note.unchecked.filename","displayName":"/home/irene/MCreatorWorkspaces/landanaleaf/src/main/java/net/mcreator/landanaleaf/init/LandanaleafModItems.java uses unchecked or unsafe operations."}]},{"locations":[{"path":"/home/irene/MCreatorWorkspaces/landanaleaf/src/main/java/net/mcreator/landanaleaf/init/LandanaleafModItems.java"},{"taskPath":":compileJava"}],"problem":[{"text":"Recompile with -Xlint:unchecked for details."}],"severity":"ADVICE","problemDetails":[{"text":"Note: Recompile with -Xlint:unchecked for details."}],"contextualLabel":"Recompile with -Xlint:unchecked for details.","problemId":[{"name":"java","displayName":"Java compilation"},{"name":"compilation","displayName":"Compilation"},{"name":"compiler.note.unchecked.recompile","displayName":"Recompile with -Xlint:unchecked for details."}]}],"problemsReport":{"totalProblemCount":3,"buildName":"landanaleaf","requestedTasks":"build","documentationLink":"https://docs.gradle.org/9.2.0/userguide/reporting_problems.html","documentationLinkCaption":"Problem report","summaries":[]}} {"diagnostics":[{"problem":[{"text":"Specifying 'org.gradle.java.installations.auto-detect' as a project property on the command line has been deprecated."}],"severity":"WARNING","problemDetails":[{"text":"This is scheduled to be removed in Gradle 10."}],"contextualLabel":"Specifying 'org.gradle.java.installations.auto-detect' as a project property on the command line has been deprecated.","documentationLink":"https://docs.gradle.org/9.2.0/userguide/upgrading_version_9.html#toolchain-project-properties","problemId":[{"name":"deprecation","displayName":"Deprecation"},{"name":"specifying-org-gradle-java-installations-auto-detect-as-a-project-property-on-the-command-line","displayName":"Specifying 'org.gradle.java.installations.auto-detect' as a project property on the command line has been deprecated."}],"solutions":[[{"text":"Instead, specify it as a Gradle property: '-Dorg.gradle.java.installations.auto-detect=false'."}]]}],"problemsReport":{"totalProblemCount":1,"buildName":"landanaleaf","requestedTasks":"runClient","documentationLink":"https://docs.gradle.org/9.2.0/userguide/reporting_problems.html","documentationLinkCaption":"Problem report","summaries":[]}}
// end-report-data // end-report-data
);} );}
</script> </script>

View file

@ -0,0 +1,6 @@
{
"model": {
"type": "minecraft:model",
"model": "landanaleaf:item/landana_bud_raw"
}
}

View file

@ -1,4 +1,6 @@
{ {
"item.landanaleaf.landana_seed": "Landana Seed", "item.landanaleaf.landana_seed": "Landana Seed",
"item.landanaleaf.landana_bud_cured": "Landana Bud Cured" "item.landanaleaf.landana_bud_cured": "Landana Bud Cured",
"item.landanaleaf.landana_bud_raw": "Landana Bud Raw",
"item_group.landanaleaf.landana_tab": "Landana Leaf"
} }

View file

@ -0,0 +1,6 @@
{
"parent": "item/generated",
"textures": {
"layer0": "landanaleaf:item/landana_bud_raw"
}
}

View file

@ -0,0 +1,32 @@
{
"parent": "minecraft:recipes/root",
"criteria": {
"has_the_recipe": {
"conditions": {
"recipe": "landanaleaf:curing_bud_campfire"
},
"trigger": "minecraft:recipe_unlocked"
},
"has_ingredient_0": {
"conditions": {
"items": [
{
"items": "landanaleaf:landana_bud_raw"
}
]
},
"trigger": "minecraft:inventory_changed"
}
},
"requirements": [
[
"has_the_recipe",
"has_ingredient_0"
]
],
"rewards": {
"recipes": [
"landanaleaf:curing_bud_campfire"
]
}
}

View file

@ -0,0 +1,32 @@
{
"parent": "minecraft:recipes/root",
"criteria": {
"has_the_recipe": {
"conditions": {
"recipe": "landanaleaf:curing_bud_smoker"
},
"trigger": "minecraft:recipe_unlocked"
},
"has_ingredient_0": {
"conditions": {
"items": [
{
"items": "landanaleaf:landana_bud_raw"
}
]
},
"trigger": "minecraft:inventory_changed"
}
},
"requirements": [
[
"has_the_recipe",
"has_ingredient_0"
]
],
"rewards": {
"recipes": [
"landanaleaf:curing_bud_smoker"
]
}
}

View file

@ -0,0 +1,10 @@
{
"type": "minecraft:campfire_cooking",
"category": "misc",
"experience": 1,
"cookingtime": 600,
"ingredient": "landanaleaf:landana_bud_raw",
"result": {
"id": "landanaleaf:landana_bud_cured"
}
}

View file

@ -0,0 +1,10 @@
{
"type": "minecraft:smoking",
"category": "misc",
"experience": 1,
"cookingtime": 100,
"ingredient": "landanaleaf:landana_bud_raw",
"result": {
"id": "landanaleaf:landana_bud_cured"
}
}

View file

@ -11,7 +11,11 @@
"animations": [], "animations": [],
"name": "Landana Bud Cured", "name": "Landana Bud Cured",
"rarity": "COMMON", "rarity": "COMMON",
"creativeTabs": [], "creativeTabs": [
{
"value": "CUSTOM:LandanaTab"
}
],
"stackSize": 64, "stackSize": 64,
"enchantability": 0, "enchantability": 0,
"useDuration": 0, "useDuration": 0,

View file

@ -11,7 +11,11 @@
"animations": [], "animations": [],
"name": "Landana Bud Raw", "name": "Landana Bud Raw",
"rarity": "COMMON", "rarity": "COMMON",
"creativeTabs": [], "creativeTabs": [
{
"value": "CUSTOM:LandanaTab"
}
],
"stackSize": 64, "stackSize": 64,
"enchantability": 0, "enchantability": 0,
"useDuration": 0, "useDuration": 0,

View file

@ -11,7 +11,11 @@
"animations": [], "animations": [],
"name": "Landana Seed", "name": "Landana Seed",
"rarity": "COMMON", "rarity": "COMMON",
"creativeTabs": [], "creativeTabs": [
{
"value": "CUSTOM:LandanaTab"
}
],
"stackSize": 64, "stackSize": 64,
"enchantability": 0, "enchantability": 0,
"useDuration": 0, "useDuration": 0,

View file

@ -0,0 +1,11 @@
{
"_fv": 79,
"_type": "tab",
"definition": {
"name": "Landana Leaf",
"icon": {
"value": "CUSTOM:LandanaBudRaw"
},
"showSearch": false
}
}

View file

@ -67,6 +67,16 @@
"src/main/resources/data/landanaleaf/advancement/recipes/curing_bud_campfire.json" "src/main/resources/data/landanaleaf/advancement/recipes/curing_bud_campfire.json"
] ]
} }
},
{
"name": "LandanaTab",
"type": "tab",
"compiles": true,
"locked_code": false,
"registry_name": "landana_tab",
"metadata": {
"files": []
}
} }
], ],
"variable_elements": [], "variable_elements": [],
@ -77,7 +87,8 @@
"en_us": { "en_us": {
"item.landanaleaf.landana_seed": "Landana Seed", "item.landanaleaf.landana_seed": "Landana Seed",
"item.landanaleaf.landana_bud_cured": "Landana Bud Cured", "item.landanaleaf.landana_bud_cured": "Landana Bud Cured",
"item.landanaleaf.landana_bud_raw": "Landana Bud Raw" "item.landanaleaf.landana_bud_raw": "Landana Bud Raw",
"item_group.landanaleaf.landana_tab": "Landana Leaf"
} }
}, },
"metadata": { "metadata": {
@ -88,6 +99,7 @@
"src/main/resources/landanaleaf.mixins.json", "src/main/resources/landanaleaf.mixins.json",
"src/main/java/net/mcreator/landanaleaf/mixin/ItemStackMixin.java", "src/main/java/net/mcreator/landanaleaf/mixin/ItemStackMixin.java",
"src/main/java/net/mcreator/landanaleaf/event/BlockEvents.java", "src/main/java/net/mcreator/landanaleaf/event/BlockEvents.java",
"src/main/java/net/mcreator/landanaleaf/init/LandanaleafModTabs.java",
"src/main/java/net/mcreator/landanaleaf/mixin/LivingEntityMixin.java", "src/main/java/net/mcreator/landanaleaf/mixin/LivingEntityMixin.java",
"src/main/java/net/mcreator/landanaleaf/mixin/BlockItemMixin.java", "src/main/java/net/mcreator/landanaleaf/mixin/BlockItemMixin.java",
"src/main/java/net/mcreator/landanaleaf/mixin/PlayerMixin.java", "src/main/java/net/mcreator/landanaleaf/mixin/PlayerMixin.java",

View file

@ -0,0 +1,8 @@
#Indigo properties file
#Fri Apr 03 04:17:25 EEST 2026
ambient-occlusion-mode=hybrid
debug-compare-lighting=auto
fix-exterior-vertex-lighting=auto
fix-luminous-block-ambient-occlusion=auto
fix-mean-light-calculation=auto
fix-smooth-lighting-offset=auto

Binary file not shown.

0
run/downloads/log.json Normal file
View file

Binary file not shown.

Binary file not shown.

BIN
run/logs/debug-1.log.gz Normal file

Binary file not shown.

BIN
run/logs/debug-2.log.gz Normal file

Binary file not shown.

3279
run/logs/debug.log Normal file

File diff suppressed because one or more lines are too long

194
run/logs/latest.log Normal file

File diff suppressed because one or more lines are too long

View file

@ -1,12 +1,148 @@
bobView:false version:4440
fboEnable:true ao:false
lastServer:localhost:25463 biomeBlendRadius:2
renderDistance:14
fancyGraphics:true
entityShadows:true
enableVsync:false enableVsync:false
entityDistanceScaling:1.0
entityShadows:true
forceUnicodeFont:false
japaneseGlyphVariants:false
fov:0.0
fovEffectScale:1.0
darknessEffectScale:1.0
glintSpeed:0.5
glintStrength:0.75
prioritizeChunkUpdates:0
fullscreen:false
gamma:0.5
graphicsMode:1
guiScale:0
maxFps:260 maxFps:260
particles:0 inactivityFpsLimit:"afk"
renderClouds:false
ao:0
mipmapLevels:4 mipmapLevels:4
narrator:0
particles:0
reducedDebugInfo:false
renderClouds:"false"
cloudRange:128
renderDistance:14
simulationDistance:12
screenEffectScale:1.0
soundDevice:""
autoJump:false
rotateWithMinecart:false
operatorItemsTab:false
autoSuggestions:true
chatColors:true
chatLinks:true
chatLinksPrompt:true
discrete_mouse_scroll:false
invertYMouse:false
realmsNotifications:true
showSubtitles:false
directionalAudio:false
touchscreen:false
bobView:false
toggleCrouch:false
toggleSprint:false
darkMojangStudiosBackground:false
hideLightningFlashes:false
hideSplashTexts:false
mouseSensitivity:0.5
damageTiltStrength:1.0
highContrast:false
highContrastBlockOutline:false
narratorHotkey:true
resourcePacks:["fabric"]
incompatibleResourcePacks:[]
lastServer:localhost:25463
lang:en_us
chatVisibility:0
chatOpacity:1.0
chatLineSpacing:0.0
textBackgroundOpacity:0.5
backgroundForChatOnly:true
hideServerAddress:false
advancedItemTooltips:false
pauseOnLostFocus:true
overrideWidth:0
overrideHeight:0
chatHeightFocused:1.0
chatDelay:0.0
chatHeightUnfocused:0.4375
chatScale:1.0
chatWidth:1.0
notificationDisplayTime:1.0
useNativeTransport:true
mainHand:"right"
attackIndicator:1
tutorialStep:none
mouseWheelSensitivity:1.0
rawMouseInput:true
glDebugVerbosity:1
skipMultiplayerWarning:false
hideMatchedNames:true
joinedFirstServer:false
syncChunkWrites:false
showAutosaveIndicator:true
allowServerListing:true
onlyShowSecureChat:false
panoramaScrollSpeed:1.0
telemetryOptInExtra:false
onboardAccessibility:false
menuBackgroundBlurriness:5
startedCleanly:true
showNowPlayingToast:false
musicFrequency:"DEFAULT"
key_key.attack:key.mouse.left
key_key.use:key.mouse.right
key_key.forward:key.keyboard.w
key_key.left:key.keyboard.a
key_key.back:key.keyboard.s
key_key.right:key.keyboard.d
key_key.jump:key.keyboard.space
key_key.sneak:key.keyboard.left.shift
key_key.sprint:key.keyboard.left.control
key_key.drop:key.keyboard.q
key_key.inventory:key.keyboard.e
key_key.chat:key.keyboard.t
key_key.playerlist:key.keyboard.tab
key_key.pickItem:key.mouse.middle
key_key.command:key.keyboard.slash
key_key.socialInteractions:key.keyboard.p
key_key.screenshot:key.keyboard.f2
key_key.togglePerspective:key.keyboard.f5
key_key.smoothCamera:key.keyboard.unknown
key_key.fullscreen:key.keyboard.f11
key_key.spectatorOutlines:key.keyboard.unknown
key_key.swapOffhand:key.keyboard.f
key_key.saveToolbarActivator:key.keyboard.c
key_key.loadToolbarActivator:key.keyboard.x
key_key.advancements:key.keyboard.l
key_key.quickActions:key.keyboard.g
key_key.hotbar.1:key.keyboard.1
key_key.hotbar.2:key.keyboard.2
key_key.hotbar.3:key.keyboard.3
key_key.hotbar.4:key.keyboard.4
key_key.hotbar.5:key.keyboard.5
key_key.hotbar.6:key.keyboard.6
key_key.hotbar.7:key.keyboard.7
key_key.hotbar.8:key.keyboard.8
key_key.hotbar.9:key.keyboard.9
soundCategory_master:1.0
soundCategory_music:0.0
soundCategory_record:1.0
soundCategory_weather:1.0
soundCategory_block:1.0
soundCategory_hostile:1.0
soundCategory_neutral:1.0
soundCategory_player:1.0
soundCategory_ambient:1.0
soundCategory_voice:1.0
soundCategory_ui:1.0
modelPart_cape:true
modelPart_jacket:true
modelPart_left_sleeve:true
modelPart_right_sleeve:true
modelPart_left_pants_leg:true
modelPart_right_pants_leg:true
modelPart_hat:true

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

View file

@ -0,0 +1,15 @@
{
"minecraft:recipes/decorations/crafting_table": {
"criteria": {
"unlock_right_away": "2026-04-03 04:11:47 +0300"
},
"done": true
},
"minecraft:adventure/adventuring_time": {
"criteria": {
"minecraft:taiga": "2026-04-03 04:11:48 +0300"
},
"done": false
},
"DataVersion": 4440
}

View file

@ -0,0 +1,39 @@
{
"minecraft:recipes/decorations/campfire": {
"criteria": {
"has_coal": "2026-04-03 04:18:06 +0300"
},
"done": true
},
"minecraft:recipes/decorations/crafting_table": {
"criteria": {
"unlock_right_away": "2026-04-03 04:17:37 +0300"
},
"done": true
},
"landanaleaf:recipes/curing_bud_smoker": {
"criteria": {
"has_ingredient_0": "2026-04-03 04:17:54 +0300"
},
"done": true
},
"landanaleaf:recipes/curing_bud_campfire": {
"criteria": {
"has_ingredient_0": "2026-04-03 04:17:54 +0300"
},
"done": true
},
"minecraft:adventure/adventuring_time": {
"criteria": {
"minecraft:taiga": "2026-04-03 04:17:38 +0300"
},
"done": false
},
"minecraft:recipes/building_blocks/coal_block": {
"criteria": {
"has_coal": "2026-04-03 04:18:06 +0300"
},
"done": true
},
"DataVersion": 4440
}

View file

@ -0,0 +1,15 @@
{
"minecraft:recipes/decorations/crafting_table": {
"criteria": {
"unlock_right_away": "2026-04-03 04:06:53 +0300"
},
"done": true
},
"minecraft:adventure/adventuring_time": {
"criteria": {
"minecraft:taiga": "2026-04-03 04:06:54 +0300"
},
"done": false
},
"DataVersion": 4440
}

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

After

Width:  |  Height:  |  Size: 9.1 KiB

Binary file not shown.

Binary file not shown.

Binary file not shown.

View file

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

View file

@ -0,0 +1 @@

View file

@ -0,0 +1 @@
{"stats":{"minecraft:custom":{"minecraft:time_since_rest":4304,"minecraft:walk_one_cm":5,"minecraft:total_world_time":4304,"minecraft:leave_game":1,"minecraft:play_time":4304,"minecraft:time_since_death":4304}},"DataVersion":4440}

View file

@ -0,0 +1 @@
{"stats":{"minecraft:custom":{"minecraft:interact_with_campfire":2,"minecraft:time_since_rest":5499,"minecraft:walk_one_cm":16295,"minecraft:leave_game":1,"minecraft:play_time":5499,"minecraft:jump":164,"minecraft:time_since_death":5499,"minecraft:sprint_one_cm":490,"minecraft:interact_with_smoker":4,"minecraft:total_world_time":5524,"minecraft:fly_one_cm":4910,"minecraft:crouch_one_cm":683,"minecraft:sneak_time":362},"minecraft:picked_up":{"landanaleaf:landana_bud_cured":2},"minecraft:used":{"minecraft:smoker":1,"minecraft:campfire":1}},"DataVersion":4440}

View file

@ -0,0 +1 @@
{"stats":{"minecraft:custom":{"minecraft:time_since_rest":2631,"minecraft:walk_one_cm":249,"minecraft:total_world_time":2662,"minecraft:leave_game":1,"minecraft:play_time":2631,"minecraft:jump":2,"minecraft:time_since_death":2631}},"DataVersion":4440}

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.6 MiB

1
run/usercache.json Normal file
View file

@ -0,0 +1 @@
[{"name":"Player49","uuid":"0d077092-9045-3af8-b41e-a691f388e76a","expiresOn":"2026-05-03 04:17:37 +0300"},{"name":"Player633","uuid":"00b30fb1-4b45-3336-98e4-8adf600e5f5e","expiresOn":"2026-05-03 04:11:47 +0300"},{"name":"Player663","uuid":"8c2b619e-5319-3b2d-81aa-a99343a6c408","expiresOn":"2026-05-03 04:06:53 +0300"}]

View file

@ -8,6 +8,7 @@ import org.apache.logging.log4j.LogManager;
import net.minecraft.world.entity.player.Player; import net.minecraft.world.entity.player.Player;
import net.minecraft.util.Tuple; import net.minecraft.util.Tuple;
import net.mcreator.landanaleaf.init.LandanaleafModTabs;
import net.mcreator.landanaleaf.init.LandanaleafModItems; import net.mcreator.landanaleaf.init.LandanaleafModItems;
import net.fabricmc.loader.api.FabricLoader; import net.fabricmc.loader.api.FabricLoader;
@ -33,6 +34,7 @@ public class LandanaleafMod implements ModInitializer {
// Start of user code block mod constructor // Start of user code block mod constructor
// End of user code block mod constructor // End of user code block mod constructor
LOGGER.info("Initializing LandanaleafMod"); LOGGER.info("Initializing LandanaleafMod");
LandanaleafModTabs.load();
LandanaleafModItems.load(); LandanaleafModItems.load();
tick(); tick();
// Start of user code block mod init // Start of user code block mod init

View file

@ -0,0 +1,30 @@
/*
* MCreator note: This file will be REGENERATED on each build.
*/
package net.mcreator.landanaleaf.init;
import net.minecraft.world.item.ItemStack;
import net.minecraft.world.item.CreativeModeTab;
import net.minecraft.resources.ResourceLocation;
import net.minecraft.resources.ResourceKey;
import net.minecraft.network.chat.Component;
import net.minecraft.core.registries.Registries;
import net.minecraft.core.registries.BuiltInRegistries;
import net.minecraft.core.Registry;
import net.mcreator.landanaleaf.LandanaleafMod;
import net.fabricmc.fabric.api.itemgroup.v1.FabricItemGroup;
public class LandanaleafModTabs {
public static ResourceKey<CreativeModeTab> TAB_LANDANA_TAB = ResourceKey.create(Registries.CREATIVE_MODE_TAB, ResourceLocation.fromNamespaceAndPath(LandanaleafMod.MODID, "landana_tab"));
public static void load() {
Registry.register(BuiltInRegistries.CREATIVE_MODE_TAB, TAB_LANDANA_TAB,
FabricItemGroup.builder().title(Component.translatable("item_group.landanaleaf.landana_tab")).icon(() -> new ItemStack(LandanaleafModItems.LANDANA_BUD_RAW)).displayItems((parameters, tabData) -> {
tabData.accept(LandanaleafModItems.LANDANA_SEED);
tabData.accept(LandanaleafModItems.LANDANA_BUD_CURED);
tabData.accept(LandanaleafModItems.LANDANA_BUD_RAW);
}).build());
}
}

View file

@ -1,5 +1,6 @@
{ {
"item.landanaleaf.landana_seed": "Landana Seed", "item.landanaleaf.landana_seed": "Landana Seed",
"item.landanaleaf.landana_bud_cured": "Landana Bud Cured", "item.landanaleaf.landana_bud_cured": "Landana Bud Cured",
"item.landanaleaf.landana_bud_raw": "Landana Bud Raw" "item.landanaleaf.landana_bud_raw": "Landana Bud Raw",
"item_group.landanaleaf.landana_tab": "Landana Leaf"
} }

Binary file not shown.

After

Width:  |  Height:  |  Size: 183 B