Skip to content

Commit

Permalink
Initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
kevinvanrijn committed Dec 10, 2019
0 parents commit 0b5f00a
Show file tree
Hide file tree
Showing 3 changed files with 50 additions and 0 deletions.
19 changes: 19 additions & 0 deletions Faithless.modinfo
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
<?xml version="1.0" encoding="utf-8"?>
<Mod id="98d99edb-9674-46c2-88ed-4a71238df3a1" version="1">
<Properties>
<Name>Faithless</Name>
<Description>All civilizations start with -25 faith.</Description>
<Teaser>All civilizations start with -25 faith.</Teaser>
<Authors>Kevin van Rijn</Authors>
<AffectsSavedGames>0</AffectsSavedGames>
<CompatibleVersions>1.2,2.0</CompatibleVersions>
</Properties>
<InGameActions>
<AddGameplayScripts id="NewAction">
<File priority="1">PlayerStartFaith.lua</File>
</AddGameplayScripts>
</InGameActions>
<Files>
<File>PlayerStartFaith.lua</File>
</Files>
</Mod>
16 changes: 16 additions & 0 deletions LICENSE.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
MIT No Attribution

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
15 changes: 15 additions & 0 deletions PlayerStartFaith.lua
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
local PlayerFaith = -25

function OnPlayerTurnActivated( player, bIsFirstTime )
local currentTurn = Game.GetCurrentGameTurn()
if currentTurn == GameConfiguration.GetStartTurn() then
local pPlayer = Players[player]
pPlayer:GetReligion():SetFaithBalance(PlayerFaith)
end
end

function Initialize()
Events.PlayerTurnActivated.Add(OnPlayerTurnActivated)
end

Initialize()

0 comments on commit 0b5f00a

Please sign in to comment.