mirror of
https://github.com/EpochModTeam/DayZ-Epoch.git
synced 2025-12-13 19:52:38 +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;
|
||||
|
||||
@@ -34940,6 +34940,34 @@
|
||||
<German>Eimer</German>
|
||||
<Russian>Ведро</Russian>
|
||||
</Key>
|
||||
<Key ID="STR_EPOCH_DESC_METAL_BUCKET">
|
||||
<English>An empty bucket</English>
|
||||
<German>Ein leerer Eimer</German>
|
||||
</Key>
|
||||
<Key ID="STR_EPOCH_METAL_BUCKET_WATER">
|
||||
<English>Bucket (Water)</English>
|
||||
<German>Eimer (Wasser)</German>
|
||||
</Key>
|
||||
<Key ID="STR_EPOCH_DESC_METAL_BUCKET_WATER">
|
||||
<English>A bucket containing water</English>
|
||||
<German>Ein Eimer Wasser</German>
|
||||
</Key>
|
||||
<Key ID="STR_EPOCH_METAL_BUCKET_FUEL">
|
||||
<English>Bucket (Fuel)</English>
|
||||
<German>Eimer (Treibstoff)</German>
|
||||
</Key>
|
||||
<Key ID="STR_EPOCH_DESC_METAL_BUCKET_FUEL">
|
||||
<English>A bucket containing fuel</English>
|
||||
<German>Ein Eimer Treibstoff</German>
|
||||
</Key>
|
||||
<Key ID="STR_EPOCH_METAL_BUCKET_MILK">
|
||||
<English>Bucket (Milk)</English>
|
||||
<German>Eimer (Milch)</German>
|
||||
</Key>
|
||||
<Key ID="STR_EPOCH_DESC_METAL_BUCKET_MILK">
|
||||
<English>A bucket containing milk</English>
|
||||
<German>Ein Eimer Milch</German>
|
||||
</Key>
|
||||
<Key ID="STR_EPOCH_SUITCASE_DIAMONDS">
|
||||
<English>Suitcase with Diamonds</English>
|
||||
<German>Koffer mit Diamanten</German>
|
||||
|
||||
Reference in New Issue
Block a user