Skip to content

Commit dcc5ab3

Browse files
deploy: 80148d1
1 parent cb0aa13 commit dcc5ab3

File tree

3 files changed

+87
-2
lines changed

3 files changed

+87
-2
lines changed

_mods/KeepAnarchy.md

Lines changed: 84 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,84 @@
1+
---
2+
layout: main
3+
4+
authors: "Sampletext282" # Authors of the mod
5+
title: KeepAnarchy # Title of the mod
6+
version: "0.9" # Version of the mod
7+
supported: "BL2" # Supported games; currently can only display as "BL2", "BL2 + TPS", or "TPS"
8+
9+
tagline: "Keep your Anarchy when leaving Pandora!" # A short description of the mod itself.
10+
description: "Keep your Anarchy when leaving Pandora!" # This is set in order to keep the SEO proper
11+
longDescription: "Let's you keep your Anarchy stacks.\nBy default you will keep 50% of your stacks, this can be changed in the mods options.\nOnly works on Host in Coop!" # Description of what the mod can do
12+
categories: ['Utility'] # Category of the type of mod
13+
14+
requirements: [] # Requirements for the given mod
15+
requirementTitles: [] # The link-friendly name of the requirements
16+
17+
issues: "https://github.com/Sampletext282/bl2-mods/issues"
18+
download: "https://github.com/Sampletext282/bl2-mods/blob/main/KeepAnarchy/KeepAnarchy.zip?raw=true"
19+
source: "https://github.com/Sampletext282/bl2-mods" # Link to source code
20+
license: [] # License name, link about the license from https://choosealicense.com/
21+
22+
---
23+
**Contents**
24+
* TOC
25+
{:toc}
26+
27+
## {{page.title}}
28+
29+
Mod by: {{page.authors}}
30+
Current Version: {{page.version}}
31+
32+
<p></p>
33+
### Description
34+
35+
{{page.longDescription | markdownify }}
36+
37+
Currently Supports: `{{page.supported}}`
38+
39+
{% if page.categories.size > 0 %}
40+
Categories:
41+
{% for category in page.categories %}
42+
* [{{category}}](/types/{{category}})
43+
{% endfor %}
44+
<p></p>
45+
{% endif %}
46+
47+
{% if page.requirements.size > 0 %}
48+
### Requirements
49+
50+
{% for requirement in page.requirements %}
51+
52+
{% assign reqName = page.requirementTitles[forloop.index0] %}
53+
54+
{% for mod in site.mods %}
55+
56+
{% assign modName = mod.path | remove_first: '_mods/' %}
57+
{% assign xz = reqName | append: '.md' %}
58+
59+
{% if modName == xz %}
60+
* [{{ requirement }}]( {{ reqName | relative_url | prepend: '/mods'}} ) <sup>[(Direct Download)]({{mod.download}})</sup>
61+
{% endif %}
62+
{% endfor %}
63+
64+
{% endfor %}
65+
<p></p>
66+
{% endif %}
67+
68+
### Links
69+
70+
{% if page.download != "" %}
71+
You can download {{page.title}} here: [Download Link]({{page.download}})
72+
{% endif %}
73+
74+
{% if page.issues != "" %}
75+
Report issues here: [Issue Tracker]({{page.issues}})
76+
{% endif %}
77+
78+
{% if page.source != "" %}
79+
View the source code here: [Source Code]({{page.source}})
80+
{% endif %}
81+
82+
{% if page.license.size > 0 %}
83+
This mod is licensed using {{page.license[0]}} <sup>[?]({{page.license[1]}})</sup>
84+
{% endif %}

mods.json

Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.

scripts/RepoInfo.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,5 +26,6 @@
2626
"https://raw.githubusercontent.com/RedxYeti/Yeti-BL2-SDK-Mods/main/modinfo/modinfo.json",
2727
"https://raw.githubusercontent.com/slserpent/bl-sdk-mods/main/modinfo.json",
2828
"https://raw.githubusercontent.com/aa3615058/Lengyu-BL2-sdk-Mods/main/modinfo.json",
29-
"https://gist.githubusercontent.com/Decept1x/3d134d9b0ce21ec9f1f41a1aaa8736c4/raw/modinfo.json"
29+
"https://gist.githubusercontent.com/Decept1x/3d134d9b0ce21ec9f1f41a1aaa8736c4/raw/modinfo.json",
30+
"https://raw.githubusercontent.com/Sampletext282/bl2-mods/master/modinfo.json"
3031
]

0 commit comments

Comments
 (0)