-
Notifications
You must be signed in to change notification settings - Fork 55
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
30 changed files
with
206 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -61,18 +61,28 @@ jobs: | |
echo "StrictHostKeyChecking no" >> ~/.ssh/config | ||
git -c submodule.Secrets.update=checkout submodule update --init | ||
# Corvax-Secrets-End | ||
- name: Setup .NET Core | ||
uses: actions/[email protected] | ||
with: | ||
dotnet-version: 6.0.x | ||
|
||
- name: Remove Dotnet 8 | ||
run: sudo apt remove --purge dotnet-sdk-8.0 | ||
|
||
- name: Test Dotnet | ||
run: dotnet --info | ||
|
||
- name: Install dependencies | ||
run: dotnet restore | ||
|
||
- name: Build Packaging | ||
run: dotnet build Content.Packaging --configuration Release --no-restore /m | ||
run: dotnet build Content.Packaging --configuration Release --no-restore -f net7.0 /m | ||
|
||
- name: Package server | ||
run: dotnet run --project Content.Packaging server --platform linux-x64 | ||
run: dotnet run --project Content.Packaging server --platform linux-x64 -f net7.0 | ||
|
||
- name: Package client | ||
run: dotnet run --project Content.Packaging client --no-wipe-release | ||
run: dotnet run --project Content.Packaging client --no-wipe-release -f net7.0 | ||
|
||
- name: Update Build Info | ||
run: Tools/gen_build_info.py | ||
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
121 changes: 121 additions & 0 deletions
121
Resources/Prototypes/ADT/Entities/Objects/Weapons/Guns/Rifels/fmfal.yml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,121 @@ | ||
- type: entity | ||
name: FN FAL | ||
parent: BaseItem | ||
id: ADTGunRifleFNFAL | ||
description: Rifles | ||
components: | ||
- type: Sprite | ||
sprite: ADT/Objects/Weapons/Guns/Rifels/fn_fal.rsi | ||
layers: | ||
- state: base | ||
map: ["enum.GunVisualLayers.Base"] | ||
- state: mag-0 | ||
map: ["enum.GunVisualLayers.Mag"] | ||
- type: Clothing | ||
sprite: ADT/Objects/Weapons/Guns/Rifels/fn_fal.rsi | ||
quickEquip: false | ||
slots: | ||
- Back | ||
- suitStorage | ||
- type: ChamberMagazineAmmoProvider | ||
- type: ItemSlots | ||
slots: | ||
gun_magazine: | ||
name: Magazine | ||
startingItem: ADTMagazineRifleFNFAL | ||
insertSound: /Audio/Weapons/Guns/MagIn/batrifle_magin.ogg | ||
ejectSound: /Audio/Weapons/Guns/MagOut/batrifle_magout.ogg | ||
priority: 1 | ||
whitelist: | ||
tags: | ||
- ADTMagazineRifleFNFAL | ||
gun_chamber: | ||
name: Chamber | ||
startingItem: CartridgeRifle | ||
priority: 1 | ||
whitelist: | ||
tags: | ||
- CartridgeRifle | ||
- type: ContainerContainer | ||
containers: | ||
gun_magazine: !type:ContainerSlot | ||
gun_chamber: !type:ContainerSlot | ||
- type: MagazineVisuals | ||
magState: mag | ||
steps: 1 | ||
zeroVisible: true | ||
- type: Appearance | ||
- type: StaticPrice | ||
price: 500 | ||
- type: AmmoCounter | ||
- type: Gun | ||
fireRate: 7 | ||
selectedMode: Burst | ||
availableModes: | ||
#- FullAuto | ||
- SemiAuto | ||
- Burst | ||
soundGunshot: | ||
collection: FN_Fal_choot | ||
- type: Item | ||
size: Large | ||
|
||
|
||
|
||
## рандомизатор звуков для разнообразия звуков выстрела | ||
- type: soundCollection | ||
id: FN_Fal_choot | ||
files: | ||
- /Audio/ADT/Weapons/fnfal/FN-FAL_shoot1.ogg | ||
- /Audio/ADT/Weapons/fnfal/FN-FAL_shoot2.ogg | ||
- /Audio/ADT/Weapons/fnfal/FN-FAL_shoot3.ogg | ||
- /Audio/ADT/Weapons/fnfal/FN-FAL_shoot4.ogg | ||
|
||
# Base mags | ||
- type: entity | ||
id: ADTBaseMagazineRifleFNFAL | ||
name: "extended magazine (.20 rifle)" | ||
parent: BaseItem | ||
abstract: true | ||
components: | ||
- type: Tag | ||
tags: | ||
- ADTMagazineRifleFNFAL | ||
- type: Item | ||
size: Small | ||
- type: BallisticAmmoProvider | ||
mayTransfer: true | ||
whitelist: | ||
tags: | ||
- CartridgeRifle | ||
capacity: 20 | ||
- type: ContainerContainer | ||
containers: | ||
ballistic-ammo: !type:Container | ||
- type: Sprite | ||
sprite: ADT/Objects/Weapons/Guns/Ammunition/Magazine/fn_fal_mag.rsi | ||
layers: | ||
- state: base | ||
map: ["enum.GunVisualLayers.Base"] | ||
- state: mag-1 | ||
map: ["enum.GunVisualLayers.Mag"] | ||
- type: MagazineVisuals | ||
magState: mag | ||
steps: 2 | ||
zeroVisible: false | ||
- type: Appearance | ||
|
||
# Magazines FN_FAL | ||
- type: entity | ||
id: ADTMagazineRifleFNFAL | ||
name: "extended magazine (.20 rifle)" | ||
parent: ADTBaseMagazineRifleFNFAL | ||
components: | ||
- type: BallisticAmmoProvider | ||
proto: CartridgeRifle | ||
- type: Sprite | ||
layers: | ||
- state: base | ||
map: ["enum.GunVisualLayers.Base"] | ||
- state: mag-1 | ||
map: ["enum.GunVisualLayers.Mag"] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -1116,3 +1116,6 @@ | |
|
||
- type: Tag | ||
id: ADTExtMagazineRifle | ||
|
||
- type: Tag | ||
id: ADTMagazineRifleFNFAL |
Binary file added
BIN
+267 Bytes
...s/Textures/ADT/Objects/Weapons/Guns/Ammunition/Magazine/fn_fal_mag.rsi/base.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+275 Bytes
...s/Textures/ADT/Objects/Weapons/Guns/Ammunition/Magazine/fn_fal_mag.rsi/icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+171 Bytes
.../Textures/ADT/Objects/Weapons/Guns/Ammunition/Magazine/fn_fal_mag.rsi/mag-1.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
20 changes: 20 additions & 0 deletions
20
Resources/Textures/ADT/Objects/Weapons/Guns/Ammunition/Magazine/fn_fal_mag.rsi/meta.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
{ | ||
"version": 1, | ||
"size": { | ||
"x": 32, | ||
"y": 32 | ||
}, | ||
"license": "CC-BY-SA-3.0", | ||
"copyright": "Created by discord:prazat911 Approved for use ONLY on the Adventure Time project.", | ||
"states": [ | ||
{ | ||
"name": "icon" | ||
}, | ||
{ | ||
"name": "base" | ||
}, | ||
{ | ||
"name": "mag-1" | ||
} | ||
] | ||
} |
Binary file added
BIN
+509 Bytes
Resources/Textures/ADT/Objects/Weapons/Guns/Rifels/fn_fal.rsi/base.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+485 Bytes
Resources/Textures/ADT/Objects/Weapons/Guns/Rifels/fn_fal.rsi/bolt-open.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+1.11 KB
...urces/Textures/ADT/Objects/Weapons/Guns/Rifels/fn_fal.rsi/equipped-BACKPACK.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+531 Bytes
Resources/Textures/ADT/Objects/Weapons/Guns/Rifels/fn_fal.rsi/icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+832 Bytes
Resources/Textures/ADT/Objects/Weapons/Guns/Rifels/fn_fal.rsi/inhand-left.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+843 Bytes
Resources/Textures/ADT/Objects/Weapons/Guns/Rifels/fn_fal.rsi/inhand-right.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+197 Bytes
Resources/Textures/ADT/Objects/Weapons/Guns/Rifels/fn_fal.rsi/mag-0.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
35 changes: 35 additions & 0 deletions
35
Resources/Textures/ADT/Objects/Weapons/Guns/Rifels/fn_fal.rsi/meta.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
{ | ||
"version": 1, | ||
"license": "CC-BY-SA-3.0", | ||
"copyright": "Created by discord:prazat911 Approved for use ONLY on the Adventure Time project.", | ||
"size": { | ||
"x": 32, | ||
"y": 32 | ||
}, | ||
"states": [ | ||
{ | ||
"name": "icon" | ||
}, | ||
{ | ||
"name": "base" | ||
}, | ||
{ | ||
"name": "mag-0" | ||
}, | ||
{ | ||
"name": "bolt-open" | ||
}, | ||
{ | ||
"name": "inhand-left", | ||
"directions": 4 | ||
}, | ||
{ | ||
"name": "inhand-right", | ||
"directions": 4 | ||
}, | ||
{ | ||
"name": "equipped-BACKPACK", | ||
"directions": 4 | ||
} | ||
] | ||
} |
Binary file modified
BIN
+270 Bytes
(140%)
Resources/Textures/Clothing/Back/Duffels/medical.rsi/equipped-BACKPACK.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified
BIN
+110 Bytes
(130%)
Resources/Textures/Clothing/Back/Duffels/medical.rsi/icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified
BIN
+179 Bytes
(130%)
Resources/Textures/Clothing/Back/Duffels/medical.rsi/inhand-left.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified
BIN
+229 Bytes
(140%)
Resources/Textures/Clothing/Back/Duffels/medical.rsi/inhand-right.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified
BIN
+87 Bytes
(110%)
Resources/Textures/Clothing/Back/Duffels/mime.rsi/equipped-BACKPACK.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified
BIN
+83 Bytes
(120%)
Resources/Textures/Clothing/Back/Duffels/mime.rsi/icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified
BIN
+38 Bytes
(100%)
Resources/Textures/Clothing/Back/Duffels/mime.rsi/inhand-left.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified
BIN
+33 Bytes
(100%)
Resources/Textures/Clothing/Back/Duffels/mime.rsi/inhand-right.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.