mirror of
https://github.com/EpochModTeam/DayZ-Epoch.git
synced 2025-12-15 21:29:59 +03:00
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:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user