Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add improved Pollux system #6021

Open
wants to merge 4 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions data/factions/001_Solar_Federation.lua
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,9 @@ f:govtype_weight('EARTHCOLONIAL', 40)

f:illegal_goods_probability('animal_meat', 75)
f:illegal_goods_probability('live_animals', 75)
f:illegal_goods_probability('slaves', 100)
f:illegal_goods_probability('slaves', 100)
f:illegal_goods_probability('hand_weapons', 100)
f:illegal_goods_probability('battle_weapons', 50)
f:illegal_goods_probability('battle_weapons', 50)
f:illegal_goods_probability('nerve_gas', 100)
f:illegal_goods_probability('narcotics', 100)

Expand Down
27 changes: 27 additions & 0 deletions data/factions/103_Syon_Traders_And_Company.lua
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
-- Copyright © 2008-2024 Pioneer Developers. See AUTHORS.txt for details
-- Licensed under the terms of the GPL v3. See licenses/GPL-3.txt

local f = Faction:new('Syon Free Traders & Company')
:description_short('Independent Merchants Thriving Amidst Galactic Conflict')
:description('Amidst the ongoing feud between The Federation and Commonwealth, a band of free merchants has adeptly played both sides, establishing an independent governance where disputes are settled over drinks at the local pub. Known for their cunning business acumen and resourcefulness, the Syon Free Traders & Company have carved out a niche as intermediaries and suppliers in the tumultuous trade lanes of the galaxy.')
:homeworld( 4, 2, 5, 0, 2)
:foundingDate(3224)
:expansionRate(2)
:military_name('Pirates Coalition Of Syon')
:police_name('Foxi Order Keepers')
:colour(1,0.372549,0.101961)

f:govtype_weight('MILDICT1', 80)
f:govtype_weight('DISORDER', 100)
f:govtype_weight('PLUTOCRATIC', 20)
f:govtype_weight('CORPORATE', 90)
f:govtype_weight('LIBDEM', 40)

f:illegal_goods_probability('live_animals', 50)
f:illegal_goods_probability('liquor', 0)
f:illegal_goods_probability('slaves', 100)
f:illegal_goods_probability('hand_weapons', 25)
f:illegal_goods_probability('battle_weapons', 0)
f:illegal_goods_probability('narcotics', 0)

f:add_to_factions('Syon Free Traders & Company')
Loading