This commit is contained in:
Pyritie 2025-08-11 20:58:20 +01:00
commit 35a84dde36
13 changed files with 577 additions and 554 deletions

View file

@ -1,4 +1,4 @@
name: "Bug report" name: "[🐛]: Bug report"
description: "Report a bug where something is not working as expected, which does not crash the game." description: "Report a bug where something is not working as expected, which does not crash the game."
title: "[🐛]: " title: "[🐛]: "
labels: [ "Status: Backlog" ] labels: [ "Status: Backlog" ]

View file

@ -1,4 +1,4 @@
name: "Crash Report" name: "[💥]: Crash Report"
description: "Report a bug that crashes the game or prevents startup." description: "Report a bug that crashes the game or prevents startup."
title: "[💥]: " title: "[💥]: "
labels: [ "Status: Backlog" ] labels: [ "Status: Backlog" ]

View file

@ -1,4 +1,4 @@
name: "Enhancement" name: "[🪡]: Enhancement"
description: "Provide supporting details for a feature in development" description: "Provide supporting details for a feature in development"
title: "[🪡]: " title: "[🪡]: "
labels: [ "Status: Backlog" ] labels: [ "Status: Backlog" ]

View file

@ -1,4 +1,4 @@
name: "Feature request" name: "[🪶]: Feature request"
description: "Request a new feature or a change to an existing one." description: "Request a new feature or a change to an existing one."
title: "[🪶]: " title: "[🪶]: "
labels: [ "Status: Backlog" ] labels: [ "Status: Backlog" ]

View file

@ -1,4 +1,4 @@
name: "Ask a Question" name: "[❓]: Ask a Question"
description: "Ask a question regarding this project." description: "Ask a question regarding this project."
title: "[❓]: " title: "[❓]: "
labels: [ "Status: Backlog" ] labels: [ "Status: Backlog" ]

View file

@ -2,6 +2,7 @@
## [Unreleased] ## [Unreleased]
### Changes ### Changes
- Complete rework of prospector's picks. (#1594) @Redeix
### Bug fixes ### Bug fixes
## [0.10.9] - 10-08-2025 ## [0.10.9] - 10-08-2025

View file

@ -736,6 +736,11 @@
"tfg.tooltip.moon_rabbit_variant.cyan": "Seafoam Fur", "tfg.tooltip.moon_rabbit_variant.cyan": "Seafoam Fur",
"tfg.tooltip.moon_rabbit_variant.purple": "Lavender Fur", "tfg.tooltip.moon_rabbit_variant.purple": "Lavender Fur",
"tfg.tooltip.moon_rabbit_variant.sofu": "Sundae Fur", "tfg.tooltip.moon_rabbit_variant.sofu": "Sundae Fur",
"tfg.toast.ore_prospector_none": "No ores found in range.",
"tfg.toast.ore_prospector_message": "Ores found within %s §6blocks in this direction: %s",
"tooltip.tfg.ore_prospector_stats": "Scan Range: %s, Cross Section: %s x %s.",
"tooltip.tfg.ore_prospector_count": "This prospector will display ore counts.",
"tooltip.tfg.ore_prospector_xray": "This prospector will display an x-ray view of ore blocks.",
"item.treetap.tap": "Deprecated Item, Craft to Upgrade", "item.treetap.tap": "Deprecated Item, Craft to Upgrade",
"item.gtceu.zinc_ingot": "Deprecated Item, Craft to Upgrade", "item.gtceu.zinc_ingot": "Deprecated Item, Craft to Upgrade",
"item.gtceu.brass_ingot": "Deprecated Item, Craft to Upgrade", "item.gtceu.brass_ingot": "Deprecated Item, Craft to Upgrade",

View file

@ -0,0 +1,5 @@
{
"textures": [
"tfg:ore_prospector_particle"
]
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 215 B

View file

@ -10,7 +10,7 @@
"infiniburn": "#minecraft:infiniburn_overworld", "infiniburn": "#minecraft:infiniburn_overworld",
"logical_height": 384, "logical_height": 384,
"min_y": 0, "min_y": 0,
"monster_spawn_block_light_limit": 15, "monster_spawn_block_light_limit": 0,
"monster_spawn_light_level": { "monster_spawn_light_level": {
"type": "minecraft:uniform", "type": "minecraft:uniform",
"value": { "value": {

View file

@ -48,6 +48,18 @@ const registerTFGItemTags = (event) => {
event.add('tfg:harvester', 'tfg:harvest_basket') event.add('tfg:harvester', 'tfg:harvest_basket')
event.add('tfg:harvester', 'tfg:aluminium_harvest_basket') event.add('tfg:harvester', 'tfg:aluminium_harvest_basket')
event.removeAll('tfc:propicks')
event.add('tfg:tools/ore_prospectors/copper', 'tfc:metal/propick/copper')
event.add('tfg:tools/ore_prospectors/bronze', 'tfc:metal/propick/bronze')
event.add('tfg:tools/ore_prospectors/bronze', 'tfc:metal/propick/bismuth_bronze')
event.add('tfg:tools/ore_prospectors/bronze', 'tfc:metal/propick/black_bronze')
event.add('tfg:tools/ore_prospectors/wrought_iron', 'tfc:metal/propick/wrought_iron')
event.add('tfg:tools/ore_prospectors/steel', 'tfc:metal/propick/steel')
event.add('tfg:tools/ore_prospectors/black_steel', 'tfc:metal/propick/black_steel')
event.add('tfg:tools/ore_prospectors/blue_steel', 'tfc:metal/propick/blue_steel')
event.add('tfg:tools/ore_prospectors/red_steel', 'tfc:metal/propick/red_steel')
//#endregion //#endregion
// #region Paper from wood // #region Paper from wood