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

[Aftershock] Millyficent whately and the migo #36908

Merged
merged 30 commits into from
Mar 6, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
30 commits
Select commit Hold shift + click to select a range
6ab2e88
Merge pull request #9 from CleverRaven/master
Maleclypse Jan 2, 2020
13ffb8f
Merge pull request #10 from CleverRaven/master
Maleclypse Jan 6, 2020
6ed5b41
Merge pull request #11 from CleverRaven/master
Maleclypse Jan 9, 2020
12428ec
dreams mutations and classes
Maleclypse Jan 10, 2020
c242b08
dialogue missions and mutations
Maleclypse Jan 11, 2020
864accd
fixes
Maleclypse Jan 11, 2020
b4a172b
fixes
Maleclypse Jan 11, 2020
0b1dbc9
Update data/mods/Aftershock/mutations/mutations.json
Maleclypse Jan 12, 2020
0f792f0
Update data/mods/Aftershock/items/mutagen.json
Maleclypse Jan 12, 2020
10dd251
Update data/mods/Aftershock/mutations/mutations.json
Maleclypse Jan 12, 2020
e019c61
Update data/mods/Aftershock/items/mutagen.json
Maleclypse Jan 12, 2020
9491bd1
Create millyficent_lab.json
Maleclypse Jan 12, 2020
fcfece7
Merge branch 'Millyficent-Whately' of https://github.com/Maleclypse/C…
Maleclypse Jan 12, 2020
04f00ca
Update dreams.json
Maleclypse Jan 12, 2020
105adab
mutations and effects
Maleclypse Jan 13, 2020
2568a84
Lab and Overmap files
Maleclypse Jan 13, 2020
a09c25b
Update millyficent_lab.json
Maleclypse Jan 14, 2020
b8d53c8
Update classes.json
Maleclypse Jan 14, 2020
440aa5b
field type and overmap terrain symbols
Maleclypse Jan 15, 2020
5df91da
linting
Maleclypse Jan 15, 2020
6e8425a
Update mutations.json
Maleclypse Jan 20, 2020
71aba71
Update mutations.json
Maleclypse Jan 20, 2020
3159d90
Update overmap_terrain.json
Maleclypse Jan 28, 2020
a752d1b
fixes
Maleclypse Jan 29, 2020
1a03d2b
Update millyficent_lab.json
Maleclypse Jan 29, 2020
64a5db6
Update millyficent_lab.json
Maleclypse Jan 29, 2020
2d205d7
Update millyficent_lab.json
Maleclypse Jan 29, 2020
98aee60
trying to fix terrain calls
Maleclypse Jan 29, 2020
7ff6e79
North?
Maleclypse Jan 30, 2020
63536de
Fixes and updates. Container test.
Maleclypse Jan 30, 2020
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
58 changes: 58 additions & 0 deletions data/mods/Aftershock/effects.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,58 @@
[
{
"id": "fd_migo_atmosphere",
"type": "field_type",
"intensity_levels": [
{
"name": "foul-smelling air",
"sym": "8",
"dangerous": true,
"effects": [
{
"effect_id": "migo_atmosphere",
"body_part": "MOUTH",
"intensity": 1,
"min_duration": "5 seconds",
"max_duration": "10 seconds",
"immune_inside_vehicle": true
}
]
},
{
"name": "foul-smelling air",
"translucency": 1,
"effects": [
{
"effect_id": "migo_atmosphere",
"body_part": "MOUTH",
"intensity": 2,
"min_duration": "10 seconds",
"max_duration": "25 seconds"
}
]
},
{
"name": "foul-smelling air",
"effects": [
{
"effect_id": "migo_atmosphere",
"body_part": "MOUTH",
"intensity": 4,
"min_duration": "15 seconds",
"max_duration": "25 seconds"
}
]
}
],
"decay_amount_factor": 5,
"gas_absorption_factor": 15,
"percent_spread": 30,
"outdoor_age_speedup": "3 minutes",
"dirty_transparency_cache": true,
"has_fume": true,
"immunity_data": { "body_part_env_resistance": [ [ "MOUTH", 15 ] ], "traits": [ "MIGO_BREATHE" ] },
"priority": 8,
"half_life": "10 minutes",
"phase": "gas"
}
]
22 changes: 22 additions & 0 deletions data/mods/Aftershock/items/mutagen.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
[
{
"id": "iv_mutagen_migo",
"copy-from": "iv_mutagen_flavor",
"type": "COMESTIBLE",
"name": "mi-go serum",
"description": "A super-concentrated mutagen strongly resembling a lava lamp. You need a syringe to inject it… if you really want to?",
"price": 1000000,
"color": "red",
"healthy": -4,
"use_action": { "type": "mutagen_iv", "mutation_category": "MIGO" }
},
{
"id": "mutagen_migo",
"copy-from": "mutagen_flavor",
"type": "COMESTIBLE",
"name": "mi-go mutagen",
"description": "An extremely rare mutagen cocktail, it smells of sulphur and glows orange.",
"price": 500000,
"use_action": { "type": "mutagen", "mutation_category": "MIGO" }
}
]
Loading