Skip to content

Commit 854ca28

Browse files
authored
Merge branch 'master' into Cold-gun
Signed-off-by: Stop-Signs <[email protected]>
2 parents 4ec1918 + 5eb7ae5 commit 854ca28

File tree

6 files changed

+63
-20
lines changed

6 files changed

+63
-20
lines changed

Resources/Changelog/DeltaVChangelog.yml

+15-12
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,4 @@
11
Entries:
2-
- author: ps3moira
3-
changes:
4-
- message: Added Fish n' Chips. Thank the British!
5-
type: Add
6-
id: 167
7-
time: '2023-12-13T20:32:51.0000000+00:00'
8-
- author: Adrian16199
9-
changes:
10-
- message: Felinids now meow out their words. They can also sigh now.
11-
type: Tweak
12-
id: 168
13-
time: '2023-12-13T21:28:39.0000000+00:00'
142
- author: VMSolidus
153
changes:
164
- message: Harpies no longer choke on completely breathable air
@@ -3722,3 +3710,18 @@
37223710
id: 666
37233711
time: '2024-11-10T20:20:26.0000000+00:00'
37243712
url: https://github.com/DeltaV-Station/Delta-v/pull/2164
3713+
- author: Stop-Signs
3714+
changes:
3715+
- message: Removed the T3 Lockout on epi techs
3716+
type: Remove
3717+
id: 667
3718+
time: '2024-11-11T02:57:13.0000000+00:00'
3719+
url: https://github.com/DeltaV-Station/Delta-v/pull/2144
3720+
- author: Radezolid
3721+
changes:
3722+
- message: The syringe gun is now a researcheable technology in the T2 civilian
3723+
category. Get it from the medical techfab once it's researched.
3724+
type: Tweak
3725+
id: 668
3726+
time: '2024-11-11T15:41:44.0000000+00:00'
3727+
url: https://github.com/DeltaV-Station/Delta-v/pull/2169

Resources/Locale/en-US/deltav/research/technologies.ftl

+1
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,5 @@ research-technology-energy-gun = Energy Guns
55
research-technology-energy-gun-advance = Advanced Energy Manipulation
66
research-technology-advance-laser = Advanced Laser Manipulation
77
research-technology-robust-melee = Robust Melee
8+
research-technology-syringe-gun = Syringe Gun
89
research-technology-ionized-cryogenic-emission-equipment = Ionized Cryogenic Emission Equipment

Resources/Prototypes/DeltaV/Recipes/Lathes/medical.yml

+17
Original file line numberDiff line numberDiff line change
@@ -5,3 +5,20 @@
55
materials:
66
Steel: 300
77
Glass: 100
8+
9+
- type: latheRecipe
10+
id: LauncherSyringe
11+
result: LauncherSyringe
12+
completetime: 3
13+
materials:
14+
Steel: 1000
15+
Glass: 500
16+
Plastic: 500
17+
18+
- type: latheRecipe
19+
id: MiniSyringe
20+
result: MiniSyringe
21+
completetime: 1
22+
materials:
23+
Plastic: 150
24+
Steel: 50
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
- type: technology
2+
id: SyringeGun
3+
name: research-technology-syringe-gun
4+
icon:
5+
sprite: Objects/Weapons/Guns/Cannons/syringe_gun.rsi
6+
state: syringe_gun
7+
discipline: CivilianServices
8+
tier: 2
9+
cost: 10000
10+
recipeUnlocks:
11+
- LauncherSyringe
12+
- MiniSyringe

Resources/Prototypes/Entities/Structures/Machines/lathe.yml

+6
Original file line numberDiff line numberDiff line change
@@ -436,6 +436,8 @@
436436
- MagazineBoxSpecialHoly
437437
- MagazineBoxSpecialMindbreaker
438438
- AdvancedTruncheon
439+
- LauncherSyringe
440+
- MiniSyringe
439441
- WeaponColdCannon
440442
# End DeltaV additions
441443

@@ -1068,6 +1070,10 @@
10681070
- WhiteCane
10691071
- AACTablet # DeltaV
10701072
dynamicRecipes:
1073+
# Begin DeltaV additions
1074+
- LauncherSyringe
1075+
- MiniSyringe
1076+
# End DeltaV additions
10711077
- ChemicalPayload
10721078
- CryostasisBeaker
10731079
- BluespaceBeaker

Resources/Prototypes/Research/disciplines.yml

+12-8
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,11 @@
55
icon:
66
sprite: Interface/Misc/research_disciplines.rsi
77
state: industrial
8+
lockoutTier: 4 # DeltaV: Lockout occurs at t4
89
tierPrerequisites:
910
1: 0
10-
2: 0.75
11-
3: 0.75
11+
2: 1 # DeltaV: raised to 1
12+
3: 1 # DeltaV: raised to 1
1213

1314
- type: techDiscipline
1415
id: Arsenal
@@ -17,10 +18,11 @@
1718
icon:
1819
sprite: Interface/Misc/research_disciplines.rsi
1920
state: arsenal
21+
lockoutTier: 4 # DeltaV: Lockout occurs at t4
2022
tierPrerequisites:
2123
1: 0
22-
2: 0.75
23-
3: 0.75
24+
2: 1 # DeltaV: raised to 1
25+
3: 1 # DeltaV: raised to 1
2426

2527
- type: techDiscipline
2628
id: Experimental
@@ -29,10 +31,11 @@
2931
icon:
3032
sprite: Interface/Misc/research_disciplines.rsi
3133
state: experimental
34+
lockoutTier: 4 # DeltaV: Lockout occurs at t4
3235
tierPrerequisites:
3336
1: 0
34-
2: 0.75
35-
3: 0.75
37+
2: 1 # DeltaV: raised to 1
38+
3: 1 # DeltaV: raised to 1
3639

3740
- type: techDiscipline
3841
id: CivilianServices
@@ -41,7 +44,8 @@
4144
icon:
4245
sprite: Interface/Misc/research_disciplines.rsi
4346
state: civilianservices
47+
lockoutTier: 4 # DeltaV: Lockout occurs at t4
4448
tierPrerequisites:
4549
1: 0
46-
2: 0.75
47-
3: 0.75
50+
2: 1 # DeltaV: raised to 1
51+
3: 1 # DeltaV: raised to 1

0 commit comments

Comments
 (0)