Added 3 new types of buckets with content

1x Water bucket (ItemBucketWater)
1x Fuel bucket (ItemBucketFuel)
1x Milk bucket (ItemBucketMilk)

Also added a description to the empty bucket (ItemBucket)
This commit is contained in:
seelenapparat
2022-01-02 12:17:02 +01:00
parent d5b40bba3a
commit c123496829
2 changed files with 62 additions and 1 deletions

View File

@@ -201,7 +201,40 @@ class ItemBucket : CA_Magazine
scope = 2;
count = 1;
displayName = $STR_EPOCH_METAL_BUCKET;
descriptionShort = $STR_EPOCH_METAL_BUCKET;
descriptionShort = $STR_EPOCH_DESC_METAL_BUCKET;
model = "\CA\Structures\Furniture\Decoration\bucket\bucket.p3d";
picture = "\dayz_epoch_c\icons\equipment\Bucket.paa";
type = 256;
};
class ItemBucketWater : CA_Magazine
{
scope = 2;
count = 1;
displayName = $STR_EPOCH_METAL_BUCKET_WATER;
descriptionShort = $STR_EPOCH_DESC_METAL_BUCKET_WATER;
model = "\CA\Structures\Furniture\Decoration\bucket\bucket.p3d";
picture = "\dayz_epoch_c\icons\equipment\Bucket.paa";
type = 256;
};
class ItemBucketFuel : CA_Magazine
{
scope = 2;
count = 1;
displayName = $STR_EPOCH_METAL_BUCKET_FUEL;
descriptionShort = $STR_EPOCH_DESC_METAL_BUCKET_FUEL;
model = "\CA\Structures\Furniture\Decoration\bucket\bucket.p3d";
picture = "\dayz_epoch_c\icons\equipment\Bucket.paa";
type = 256;
};
class ItemBucketMilk : CA_Magazine
{
scope = 2;
count = 1;
displayName = $STR_EPOCH_METAL_BUCKET_MILK;
descriptionShort = $STR_EPOCH_DESC_METAL_BUCKET_MILK;
model = "\CA\Structures\Furniture\Decoration\bucket\bucket.p3d";
picture = "\dayz_epoch_c\icons\equipment\Bucket.paa";
type = 256;