Jump to content

Need some help with some soup :D


LeftieLori

Recommended Posts

Hi everyone, I have a custom soup can I wanted to add to a mod. I copied the in game can of mushroom soup and for some reason now, in game, I can't open it and get "opened" can of soup in return. Can anyone help me with whatever I'm missing?

[spoiler]

[code]
module Base
{
    /****************************** FOOD ******************************/
    
    item CannedFamilySoupOpen
    {
        DisplayCategory = Food,
        Weight    =    0.7,
        Type    =    Food,
        DisplayName    =    Opened Soup for my Family,
        EvolvedRecipe = Omelette:5;Soup:10;Stew:10;Stir fry Griddle Pan:10;Stir fry:10;Burger:5;Salad:10;Roasted Vegetables:10;RicePot:10;RicePan:10;PastaPot:10;PastaPan:10,
        Icon    =    CannedMushroomSoupOpen,
        HungerChange         =        -100,
        DaysFresh            =    999,
        DaysTotallyRotten    =    999,
        ThirstChange    =    -100,
        Carbohydrates = 19,
        Proteins = 3,
        Lipids = 8,
        Calories = 160,
        Packaged = TRUE,
        ReplaceOnUse    =   TinCanEmpty,
        StaticModel = CanOpen,
        EatType = can,
        CannedFood = TRUE,
        WorldStaticModel = CanOpenMushroom,
    }
    item CannedFamilySoup
    {
        DisplayCategory = Food,
        Weight    =    0.7,
        Type    =    Food,
        DisplayName    =    Soup for my Family,
        Icon    =    CannedMushroomSoup,
        Carbohydrates = 19,
        Proteins = 3,
        Lipids = 8,
        Calories = 160,
        Packaged = TRUE,
        StaticModel = CanClosed,
        CannedFood = TRUE,
        WorldStaticModel = CanClosedMushroom,
    }
    
}
[/code]
[/spoiler]

 

Soup 2.png

Soup 1.png

Edited by LeftieLori
trying to get code spoilered correctly
Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...