oh I'm stupid
This commit is contained in:
parent
9e3d106504
commit
423aec9291
3 changed files with 9 additions and 8 deletions
|
|
@ -20,6 +20,7 @@
|
|||
- Recolored diamond GregTech things to match the color of the vanilla diamond item @Pyritie
|
||||
- Buffed the HP of the Illager Beast @Pyritie
|
||||
- Added a thermochemically treated hardwood dust -> soaked unrefined paper recipe to the helve hammer (#2621) @Pyritie
|
||||
- Added Ad Astra's decorative blocks to Domum Ornamentum's whitelist (#2627) @thederpysockdude123
|
||||
#### Hazard changes
|
||||
- Added a new medical condition, Irradiated, caused by the Radioactive hazard which all radioactive things (including naquadria and neutronium) now have instead of Carcinogenic. It has the same symptoms/side effects as carcinogenic.
|
||||
- Paracetamol now cures carcinogenic, and Rad-Away cures both carcinogenic and irradiated. This is because you encounter carcinogenic hazards much sooner than radioactive ones, so the only cure for radioactive being way in HV didn't make much sense. In order to change the effects of these pills, we had to make new items, so any existing ones won't have these changes, sorry.
|
||||
|
|
@ -46,7 +47,7 @@
|
|||
- Fixed some inconsistent ladder recipes (#2616) @Pyritie
|
||||
### Translation updates
|
||||
- Chinese (simplified) @jmecn
|
||||
- Russian @Petr211071
|
||||
- Russian @Petr211071 @AlexUnder
|
||||
|
||||
## [0.11.15] - 31-12-2025
|
||||
### Bug fixes
|
||||
|
|
|
|||
|
|
@ -175,7 +175,7 @@ function registerVintageImprovementsRecipes(event) {
|
|||
})
|
||||
|
||||
HAMMERING_ITEMS.forEach(x => {
|
||||
generateHammeringRecipe(event, x.material, x.blows, 'copper');
|
||||
generateHammeringRecipeFromItem(event, x.input, x.output, x.blows, 'copper');
|
||||
x.blows--;
|
||||
})
|
||||
|
||||
|
|
|
|||
|
|
@ -231,7 +231,11 @@ global.GTCEU_DISABLED_ITEMS = /** @type {const} */ ([
|
|||
"gtceu:thorium_plate",
|
||||
"gtceu:double_thorium_plate",
|
||||
"gtceu:thorium_rod",
|
||||
"gtceu:thorium_bucket"
|
||||
"gtceu:thorium_bucket",
|
||||
|
||||
// Replaced with our own
|
||||
"gtceu:paracetamol_pill",
|
||||
"gtceu:rad_away_pill"
|
||||
]);
|
||||
//#endregion
|
||||
|
||||
|
|
@ -247,11 +251,7 @@ global.GTCEU_HIDED_ITEMS = /** @type {const} */ ([
|
|||
"gtceu:iv_damascus_steel_wrench",
|
||||
"gtceu:lv_damascus_steel_screwdriver",
|
||||
|
||||
"gtceu:sus_record",
|
||||
|
||||
// Replaced with our own
|
||||
"gtceu:paracetamol_pill",
|
||||
"gtceu:rad_away_pill"
|
||||
"gtceu:sus_record"
|
||||
]);
|
||||
//#endregion
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue