-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
45 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
# File encoding: preferred UTF8 (no BOM) if unicode characters are present, it can be ANSI for English-only | ||
# File format: ini as default and then HJSON/JSON5/JSONC/JSON (JSON doesn't allow comments) for advanced modders who want to use benefits of those file formats | ||
# File name: it must be the same as tp2 name: MyMod.tp2 => MyMod.ini (.hjson/.json5/.jsonc/.json) | ||
# File location: the same folder where .tp2 file is present | ||
# File content: every key=value pair is optional, key names are case insensitive | ||
|
||
# ini section header is required to avoid false detection | ||
[Metadata] | ||
|
||
# Full name of the mod, without version number | ||
Name = Improved Archer Kit | ||
|
||
# Author name or nick, don't use email address | ||
Author = Argent77 | ||
|
||
# Short description of the mod, main goals, features etc | ||
Description = A mod for BG2, BGT, BG:EE, BG2:EE, EET and IWD:EE that improves the original Archer kit and adds similar kits for fighters, paladins and thieves. | ||
|
||
# Web address of mod readme file (filename is case-sensitive!) You can link to txt, md, html, pdf etc. | ||
Readme = https://argent77.github.io/A7-ImprovedArcher/index.html | ||
|
||
# Web address of mod dedicated forum or forum thread | ||
Forum = http://www.shsforums.net/topic/58012-improved-archer-kit/, https://forums.beamdog.com/discussion/34696/mod-improved-archer-kit-for-bgee-bg2ee-iwd-ee-and-original-bg2-bgt | ||
|
||
# Web address of mod personal Homepage, no need to duplicate with a mod dedicated forum | ||
# Homepage = https://www.example.com | ||
|
||
# if you use Github.com, simply use https://github.com/AccountOrOrgName/RepositoryName | ||
# read more about Delta Updates https://github.com/ALIENQuake/ProjectInfinity/wiki/Delta-Updates-for-mods-hosted-at-Github | ||
Download = https://github.com/Argent77/A7-ImprovedArcher | ||
|
||
# Dynamic Install Order Category | ||
Type = Kits | ||
|
||
# This mod has to be installed *before* the mods listed after the keyword | ||
# Before = | ||
|
||
# This mod has to be installed *after* the mods listed after the keyword | ||
# After = | ||
|
||
# The listed mods are required to be installed *before* this mod | ||
# Require-Earlier = | ||
|
||
# The listed mods are required to be installed *after* this mod | ||
# Require-Later = |
File renamed without changes.