把小猫咪变成月泗就好了,我真是天才
This commit is contained in:
parent
d3f8a0f45e
commit
e752d21807
@ -174,6 +174,27 @@ public class BlackSugarModMain {
|
|||||||
)
|
)
|
||||||
);
|
);
|
||||||
|
|
||||||
|
// 心满意足的小猫咪物品
|
||||||
|
public static final RegistryObject<Item> SATISFIED_KITTEN = ITEMS.register("satisfied_kitten",
|
||||||
|
() -> new Item(new Item.Properties()
|
||||||
|
.setId(ITEMS.key("satisfied_kitten"))
|
||||||
|
)
|
||||||
|
);
|
||||||
|
|
||||||
|
// 发情的小猫咪物品
|
||||||
|
public static final RegistryObject<Item> HORNY_KITTEN = ITEMS.register("horny_kitten",
|
||||||
|
() -> new Item(new Item.Properties()
|
||||||
|
.setId(ITEMS.key("horny_kitten"))
|
||||||
|
)
|
||||||
|
);
|
||||||
|
|
||||||
|
// 想吃肉的小猫咪物品
|
||||||
|
public static final RegistryObject<Item> MEAT_CRAVING_KITTEN = ITEMS.register("meat_craving_kitten",
|
||||||
|
() -> new Item(new Item.Properties()
|
||||||
|
.setId(ITEMS.key("meat_craving_kitten"))
|
||||||
|
)
|
||||||
|
);
|
||||||
|
|
||||||
// 香喷喷的串海星物品,可食用
|
// 香喷喷的串海星物品,可食用
|
||||||
public static final RegistryObject<Item> FRAGRANT_STARFISH_SKEWER = ITEMS.register("fragrant_starfish_skewer",
|
public static final RegistryObject<Item> FRAGRANT_STARFISH_SKEWER = ITEMS.register("fragrant_starfish_skewer",
|
||||||
() -> new Item(new Item.Properties()
|
() -> new Item(new Item.Properties()
|
||||||
@ -220,6 +241,13 @@ public class BlackSugarModMain {
|
|||||||
)
|
)
|
||||||
);
|
);
|
||||||
|
|
||||||
|
// Lover's Lover物品
|
||||||
|
public static final RegistryObject<Item> LOVERS_LOVER = ITEMS.register("lovers_lover",
|
||||||
|
() -> new Item(new Item.Properties()
|
||||||
|
.setId(ITEMS.key("lovers_lover"))
|
||||||
|
)
|
||||||
|
);
|
||||||
|
|
||||||
public BlackSugarModMain(FMLJavaModLoadingContext context) {
|
public BlackSugarModMain(FMLJavaModLoadingContext context) {
|
||||||
IEventBus modEventBus = context.getModEventBus();
|
IEventBus modEventBus = context.getModEventBus();
|
||||||
|
|
||||||
@ -261,10 +289,14 @@ public class BlackSugarModMain {
|
|||||||
event.accept(PICKLED_TURTLE);
|
event.accept(PICKLED_TURTLE);
|
||||||
event.accept(BLAND_KITTEN);
|
event.accept(BLAND_KITTEN);
|
||||||
event.accept(MALICIOUS_KITTEN);
|
event.accept(MALICIOUS_KITTEN);
|
||||||
|
event.accept(SATISFIED_KITTEN);
|
||||||
|
event.accept(HORNY_KITTEN);
|
||||||
|
event.accept(MEAT_CRAVING_KITTEN);
|
||||||
event.accept(FRAGRANT_STARFISH_SKEWER);
|
event.accept(FRAGRANT_STARFISH_SKEWER);
|
||||||
event.accept(POT_OF_PRISON_VEGETABLES);
|
event.accept(POT_OF_PRISON_VEGETABLES);
|
||||||
event.accept(BRAISED_PRISON_VEGETABLES);
|
event.accept(BRAISED_PRISON_VEGETABLES);
|
||||||
event.accept(CHARCOAL_GRILLED_TURTLE);
|
event.accept(CHARCOAL_GRILLED_TURTLE);
|
||||||
|
event.accept(LOVERS_LOVER);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -0,0 +1,6 @@
|
|||||||
|
{
|
||||||
|
"model": {
|
||||||
|
"type": "minecraft:model",
|
||||||
|
"model": "blacksugarmod:item/horny_kitten"
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1,6 @@
|
|||||||
|
{
|
||||||
|
"model": {
|
||||||
|
"type": "minecraft:model",
|
||||||
|
"model": "blacksugarmod:item/lovers_lover"
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1,6 @@
|
|||||||
|
{
|
||||||
|
"model": {
|
||||||
|
"type": "minecraft:model",
|
||||||
|
"model": "blacksugarmod:item/meat_craving_kitten"
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1,6 @@
|
|||||||
|
{
|
||||||
|
"model": {
|
||||||
|
"type": "minecraft:model",
|
||||||
|
"model": "blacksugarmod:item/satisfied_kitten"
|
||||||
|
}
|
||||||
|
}
|
@ -17,5 +17,9 @@
|
|||||||
"item.blacksugarmod.fragrant_starfish_skewer": "香喷喷的串海星",
|
"item.blacksugarmod.fragrant_starfish_skewer": "香喷喷的串海星",
|
||||||
"item.blacksugarmod.pot_of_prison_vegetables": "一锅牢菜",
|
"item.blacksugarmod.pot_of_prison_vegetables": "一锅牢菜",
|
||||||
"item.blacksugarmod.braised_prison_vegetables": "闷牢菜",
|
"item.blacksugarmod.braised_prison_vegetables": "闷牢菜",
|
||||||
"item.blacksugarmod.charcoal_grilled_turtle": "炭烤萨卡班甲鱼"
|
"item.blacksugarmod.charcoal_grilled_turtle": "炭烤萨卡班甲鱼",
|
||||||
|
"item.blacksugarmod.satisfied_kitten": "心满意足的小猫咪",
|
||||||
|
"item.blacksugarmod.horny_kitten": "发情的小猫咪",
|
||||||
|
"item.blacksugarmod.meat_craving_kitten": "想吃肉的小猫咪",
|
||||||
|
"item.blacksugarmod.lovers_lover": "Lover's Lover"
|
||||||
}
|
}
|
@ -0,0 +1,6 @@
|
|||||||
|
{
|
||||||
|
"parent": "minecraft:item/generated",
|
||||||
|
"textures": {
|
||||||
|
"layer0": "blacksugarmod:item/horny_kitten"
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1,6 @@
|
|||||||
|
{
|
||||||
|
"parent": "minecraft:item/generated",
|
||||||
|
"textures": {
|
||||||
|
"layer0": "blacksugarmod:item/lovers_lover"
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1,6 @@
|
|||||||
|
{
|
||||||
|
"parent": "minecraft:item/generated",
|
||||||
|
"textures": {
|
||||||
|
"layer0": "blacksugarmod:item/bland_kitten"
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1,6 @@
|
|||||||
|
{
|
||||||
|
"parent": "minecraft:item/generated",
|
||||||
|
"textures": {
|
||||||
|
"layer0": "blacksugarmod:item/satisfied_kitten"
|
||||||
|
}
|
||||||
|
}
|
Binary file not shown.
After Width: | Height: | Size: 2.3 KiB |
Binary file not shown.
After Width: | Height: | Size: 1.0 KiB |
Binary file not shown.
After Width: | Height: | Size: 2.0 KiB |
@ -0,0 +1,11 @@
|
|||||||
|
{
|
||||||
|
"type": "minecraft:crafting_shapeless",
|
||||||
|
"ingredients": [
|
||||||
|
"blacksugarmod:bland_kitten",
|
||||||
|
"minecraft:carrot"
|
||||||
|
],
|
||||||
|
"result": {
|
||||||
|
"id": "blacksugarmod:horny_kitten",
|
||||||
|
"count": 1
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1,18 @@
|
|||||||
|
{
|
||||||
|
"type": "minecraft:crafting_shapeless",
|
||||||
|
"ingredients": [
|
||||||
|
"blacksugarmod:malicious_kitten",
|
||||||
|
"blacksugarmod:crispy_bro",
|
||||||
|
"blacksugarmod:fragrant_starfish_skewer",
|
||||||
|
"blacksugarmod:braised_prison_vegetables",
|
||||||
|
"blacksugarmod:roasted_marshmallow",
|
||||||
|
"blacksugarmod:carcinogenic_marshmallow",
|
||||||
|
"blacksugarmod:marshmallow",
|
||||||
|
"blacksugarmod:charcoal_grilled_turtle",
|
||||||
|
"blacksugarmod:black_sugar_dumpling"
|
||||||
|
],
|
||||||
|
"result": {
|
||||||
|
"id": "blacksugarmod:lovers_lover",
|
||||||
|
"count": 1
|
||||||
|
}
|
||||||
|
}
|
@ -2,8 +2,6 @@
|
|||||||
"type": "minecraft:crafting_shapeless",
|
"type": "minecraft:crafting_shapeless",
|
||||||
"ingredients": [
|
"ingredients": [
|
||||||
"blacksugarmod:bland_kitten",
|
"blacksugarmod:bland_kitten",
|
||||||
"blacksugarmod:cooking_oil",
|
|
||||||
"blacksugarmod:scallion",
|
|
||||||
"minecraft:nether_wart"
|
"minecraft:nether_wart"
|
||||||
],
|
],
|
||||||
"result": {
|
"result": {
|
||||||
|
@ -0,0 +1,11 @@
|
|||||||
|
{
|
||||||
|
"type": "minecraft:crafting_shapeless",
|
||||||
|
"ingredients": [
|
||||||
|
"blacksugarmod:bland_kitten",
|
||||||
|
"blacksugarmod:carcinogenic_marshmallow"
|
||||||
|
],
|
||||||
|
"result": {
|
||||||
|
"id": "blacksugarmod:meat_craving_kitten",
|
||||||
|
"count": 1
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1,11 @@
|
|||||||
|
{
|
||||||
|
"type": "minecraft:crafting_shapeless",
|
||||||
|
"ingredients": [
|
||||||
|
"blacksugarmod:bland_kitten",
|
||||||
|
"blacksugarmod:black_sugar_dumpling"
|
||||||
|
],
|
||||||
|
"result": {
|
||||||
|
"id": "blacksugarmod:meat_craving_kitten",
|
||||||
|
"count": 1
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1,11 @@
|
|||||||
|
{
|
||||||
|
"type": "minecraft:crafting_shapeless",
|
||||||
|
"ingredients": [
|
||||||
|
"blacksugarmod:bland_kitten",
|
||||||
|
"blacksugarmod:marshmallow"
|
||||||
|
],
|
||||||
|
"result": {
|
||||||
|
"id": "blacksugarmod:meat_craving_kitten",
|
||||||
|
"count": 1
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1,11 @@
|
|||||||
|
{
|
||||||
|
"type": "minecraft:crafting_shapeless",
|
||||||
|
"ingredients": [
|
||||||
|
"blacksugarmod:bland_kitten",
|
||||||
|
"blacksugarmod:roasted_marshmallow"
|
||||||
|
],
|
||||||
|
"result": {
|
||||||
|
"id": "blacksugarmod:meat_craving_kitten",
|
||||||
|
"count": 1
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1,11 @@
|
|||||||
|
{
|
||||||
|
"type": "minecraft:crafting_shapeless",
|
||||||
|
"ingredients": [
|
||||||
|
"blacksugarmod:bland_kitten",
|
||||||
|
"blacksugarmod:braised_prison_vegetables"
|
||||||
|
],
|
||||||
|
"result": {
|
||||||
|
"id": "blacksugarmod:meat_craving_kitten",
|
||||||
|
"count": 1
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1,11 @@
|
|||||||
|
{
|
||||||
|
"type": "minecraft:crafting_shapeless",
|
||||||
|
"ingredients": [
|
||||||
|
"blacksugarmod:bland_kitten",
|
||||||
|
"blacksugarmod:crispy_bro"
|
||||||
|
],
|
||||||
|
"result": {
|
||||||
|
"id": "blacksugarmod:satisfied_kitten",
|
||||||
|
"count": 1
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1,11 @@
|
|||||||
|
{
|
||||||
|
"type": "minecraft:crafting_shapeless",
|
||||||
|
"ingredients": [
|
||||||
|
"blacksugarmod:meat_craving_kitten",
|
||||||
|
"blacksugarmod:crispy_bro"
|
||||||
|
],
|
||||||
|
"result": {
|
||||||
|
"id": "blacksugarmod:satisfied_kitten",
|
||||||
|
"count": 1
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1,11 @@
|
|||||||
|
{
|
||||||
|
"type": "minecraft:crafting_shapeless",
|
||||||
|
"ingredients": [
|
||||||
|
"blacksugarmod:meat_craving_kitten",
|
||||||
|
"blacksugarmod:fragrant_starfish_skewer"
|
||||||
|
],
|
||||||
|
"result": {
|
||||||
|
"id": "blacksugarmod:satisfied_kitten",
|
||||||
|
"count": 1
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1,11 @@
|
|||||||
|
{
|
||||||
|
"type": "minecraft:crafting_shapeless",
|
||||||
|
"ingredients": [
|
||||||
|
"blacksugarmod:meat_craving_kitten",
|
||||||
|
"blacksugarmod:charcoal_grilled_turtle"
|
||||||
|
],
|
||||||
|
"result": {
|
||||||
|
"id": "blacksugarmod:satisfied_kitten",
|
||||||
|
"count": 1
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1,11 @@
|
|||||||
|
{
|
||||||
|
"type": "minecraft:crafting_shapeless",
|
||||||
|
"ingredients": [
|
||||||
|
"blacksugarmod:bland_kitten",
|
||||||
|
"blacksugarmod:fragrant_starfish_skewer"
|
||||||
|
],
|
||||||
|
"result": {
|
||||||
|
"id": "blacksugarmod:satisfied_kitten",
|
||||||
|
"count": 1
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1,11 @@
|
|||||||
|
{
|
||||||
|
"type": "minecraft:crafting_shapeless",
|
||||||
|
"ingredients": [
|
||||||
|
"blacksugarmod:bland_kitten",
|
||||||
|
"blacksugarmod:charcoal_grilled_turtle"
|
||||||
|
],
|
||||||
|
"result": {
|
||||||
|
"id": "blacksugarmod:satisfied_kitten",
|
||||||
|
"count": 1
|
||||||
|
}
|
||||||
|
}
|
Loading…
x
Reference in New Issue
Block a user