Skip to content

Commit

Permalink
Add Paradox modified files
Browse files Browse the repository at this point in the history
Add the Paradox files (for the 2.7.2 version) which are modified by the mod
  • Loading branch information
NicolasGrosjean committed Jul 11, 2018
1 parent e59addb commit 2fb2a27
Show file tree
Hide file tree
Showing 104 changed files with 297,959 additions and 0 deletions.
1,103 changes: 1,103 additions & 0 deletions LCDA/common/artifact_spawns/00_artifact_spawns.txt

Large diffs are not rendered by default.

42 changes: 42 additions & 0 deletions LCDA/common/artifact_spawns/artifact_spawns.info
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
Artifact spawns, decides which items are spawned at the begining of the game.

variables:

spawn_chance:
mtth, to decide whether an artifact spawn should execute or not. Range is 0-100. Default behavior is to always spawn.

example: a 50% chance to execute an artifact spawn
spawn_chance = {
value = 50
}

weight:
mtth, character scope, evaluates a potential artifact holder score, which is then used for randomizing who gets an artifact. Default behavior is for everyone to have the same chance.

example: only christians have a chance of getting an artifact
weight = {
value = 0
additive_modifier = {
value = 100
religion_group = christian
}
}

max_amount:
integer, how many artifacts do we hand out? default is 4,294,967,295

spawn_date:
date, what date should it claim to have been created? Note that this could be in the future; the spawn chance should be handled in spawn_chance. If a date at or before 1.1.1 is used, it'll state "Unknown Date"

artifacts:
A list of keys and MTTH for which artifact is spawned.

example: 50% chance that the person will get a golden_platypus
artifacts ={
golden_platypus = {
value = 1
}
crystal_platypus = {
value = 1
}
}
Loading

1 comment on commit 2fb2a27

@NicolasGrosjean
Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This will be useful for #5

Please sign in to comment.