Compare commits
27
Commits
df232372df
...
main
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
c2566f702f | ||
|
|
667e4fa2d8 | ||
|
|
b03c4a628d | ||
|
|
138940d4ce | ||
|
|
54118cf4a6 | ||
|
|
864563e72b | ||
|
|
9cfeb3e54a | ||
|
|
c8efd369f0 | ||
|
|
0eb3b9f8ca | ||
|
|
3656076504 | ||
|
|
1befbbe7fe | ||
|
|
5de402209b | ||
|
|
26757e96e2 | ||
|
|
6401472a42 | ||
|
|
e92654e840 | ||
|
|
317366f5b4 | ||
|
|
58f21fc46d | ||
|
|
8a1705366e | ||
|
|
21f8506814 | ||
|
|
344b7cf87c | ||
|
|
6c1ae0fd4b | ||
|
|
ccabfa323f | ||
|
|
937f2302da | ||
|
|
4018c4da3f | ||
|
|
7e8c596ff6 | ||
|
|
cdfb5fd135 | ||
|
|
eca71b0459 |
@@ -18,6 +18,7 @@
|
||||
!/PupaMLupa.json
|
||||
!/TLauncherAdditional.json
|
||||
!/.curseclient
|
||||
!/pull_and_tl.bat
|
||||
|
||||
!/config/**
|
||||
!/kubejs/**
|
||||
@@ -41,6 +42,8 @@
|
||||
!/Server/sync-mods-from-client.ps1
|
||||
!/Server/extract-missing-ru-translations.ps1
|
||||
!/Server/install-service.sh
|
||||
!/Server/restart-scheduled.sh
|
||||
!/Server/clear-ground-items-hourly.sh
|
||||
!/Server/README.md
|
||||
!/Server/start.sh
|
||||
!/Server/variables.txt
|
||||
@@ -64,3 +67,7 @@
|
||||
/config/fabric/indigo-renderer.properties
|
||||
/options.txt
|
||||
shaderpacks/ComplementaryReimagined_r5.7.1 + EuphoriaPatches_1.8.6.txt
|
||||
config/ars_nouveau/search_index/
|
||||
config/ars_nouveau/doc_data.json
|
||||
config/jei/world/server/*/lookupHistory.json
|
||||
config/jei/world/server/TailServer_66b67433/bookmarks.json
|
||||
|
||||
Executable
+134
@@ -0,0 +1,134 @@
|
||||
#!/usr/bin/env bash
|
||||
# Почасовая очистка выброшенных на земле предметов (сущность item) через RCON
|
||||
# с тем же графиком предупреждений, что и restart-scheduled.sh (10 / 5 / 1 мин, 30 с, 5…1).
|
||||
#
|
||||
# Требования: RCON как в restart-scheduled.sh (mcrcon или rcon), server.properties,
|
||||
# сервер в systemd active (по умолчанию unit minecraft).
|
||||
#
|
||||
# Расписание (cron достаточно, отдельная блокировка между скриптами не обязательна):
|
||||
# Перезапуск обычно: 0 */6 * * * → в :00 часов 0, 6, 12, 18.
|
||||
# Очистку не ставьте в те же :00 — иначе ~10 минут предупреждений пересекутся.
|
||||
# Рекомендуется каждый час в половине часа (после типичного перезапуска уже всё тихо):
|
||||
# 30 * * * * /usr/bin/bash /opt/PupaMLupa/Server/clear-ground-items-hourly.sh >>/var/log/mc-clear-items.log 2>&1
|
||||
# Другой вариант — одна фиксированная минута, не кратная 6-часовому перезапуску, например:
|
||||
# 17 * * * * … (каждый час в :17)
|
||||
#
|
||||
# Переменные окружения (необязательно):
|
||||
# MINECRAFT_SERVICE — unit systemd (по умолчанию: minecraft)
|
||||
# RCON_HOST, RCON_PORT, RCON_PASSWORD, RCON_TIMEOUT — как в restart-scheduled.sh
|
||||
# CLEAR_ITEMS_RCON_CMD — команда консоли без ведущего / (по умолчанию:
|
||||
# kill @e[type=item] — то же, что /kill в игре)
|
||||
|
||||
set -euo pipefail
|
||||
export PATH="/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:${PATH:-}"
|
||||
|
||||
SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
|
||||
cd "${SCRIPT_DIR}"
|
||||
|
||||
MINECRAFT_SERVICE="${MINECRAFT_SERVICE:-minecraft}"
|
||||
RCON_HOST="${RCON_HOST:-127.0.0.1}"
|
||||
RCON_TIMEOUT="${RCON_TIMEOUT:-60s}"
|
||||
RCON_CLIENT=""
|
||||
CLEAR_ITEMS_RCON_CMD="${CLEAR_ITEMS_RCON_CMD:-kill @e[type=item]}"
|
||||
|
||||
LOCK_FILE="${SCRIPT_DIR}/.clear-ground-items-hourly.lock"
|
||||
PROPS="${SCRIPT_DIR}/server.properties"
|
||||
|
||||
log() {
|
||||
echo "[$(date -Iseconds)] $*"
|
||||
}
|
||||
|
||||
die() {
|
||||
log "ОШИБКА: $*" >&2
|
||||
exit 1
|
||||
}
|
||||
|
||||
read_prop() {
|
||||
local key="$1"
|
||||
[[ -f "${PROPS}" ]] || die "нет файла ${PROPS}"
|
||||
grep -E "^[[:space:]]*${key}[[:space:]]*=" "${PROPS}" 2>/dev/null | head -n1 \
|
||||
| cut -d= -f2- | tr -d '\r' | sed 's/^[[:space:]]*//;s/[[:space:]]*$//'
|
||||
}
|
||||
|
||||
systemctl_wrap() {
|
||||
if [[ "${EUID:-0}" -eq 0 ]]; then
|
||||
systemctl "$@"
|
||||
elif command -v sudo >/dev/null 2>&1 && sudo -n true 2>/dev/null; then
|
||||
sudo -n systemctl "$@"
|
||||
else
|
||||
systemctl "$@"
|
||||
fi
|
||||
}
|
||||
|
||||
rcon_exec() {
|
||||
local cmd="$1"
|
||||
if [[ "${RCON_CLIENT}" == "mcrcon" ]]; then
|
||||
mcrcon -H "${RCON_HOST}" -P "${RCON_PORT}" -p "${RCON_PASSWORD}" "${cmd}"
|
||||
else
|
||||
set -f
|
||||
# shellcheck disable=SC2086
|
||||
rcon -a "${RCON_HOST}:${RCON_PORT}" -p "${RCON_PASSWORD}" -T "${RCON_TIMEOUT}" ${cmd}
|
||||
set +f
|
||||
fi
|
||||
}
|
||||
|
||||
rcon_say() {
|
||||
rcon_exec "say $1"
|
||||
}
|
||||
|
||||
exec 9>"${LOCK_FILE}"
|
||||
if ! flock -n 9; then
|
||||
log "уже идёт другой запуск (flock ${LOCK_FILE}) — выход."
|
||||
exit 0
|
||||
fi
|
||||
|
||||
if command -v mcrcon >/dev/null 2>&1; then
|
||||
RCON_CLIENT="mcrcon"
|
||||
elif command -v rcon >/dev/null 2>&1; then
|
||||
RCON_CLIENT="rcon"
|
||||
else
|
||||
die "нужен mcrcon или rcon (см. restart-scheduled.sh в этом каталоге)."
|
||||
fi
|
||||
log "RCON-клиент: ${RCON_CLIENT}"
|
||||
|
||||
if ! systemctl_wrap is-active --quiet "${MINECRAFT_SERVICE}"; then
|
||||
log "сервис ${MINECRAFT_SERVICE} не active — очистка пропущена."
|
||||
exit 0
|
||||
fi
|
||||
|
||||
rc_en="$(read_prop enable-rcon)"
|
||||
[[ "${rc_en,,}" == "true" ]] || die "в server.properties включите enable-rcon=true"
|
||||
|
||||
_prop_port="$(read_prop rcon.port)"
|
||||
_prop_pass="$(read_prop rcon.password)"
|
||||
RCON_PORT="${RCON_PORT:-${_prop_port}}"
|
||||
RCON_PASSWORD="${RCON_PASSWORD:-${_prop_pass}}"
|
||||
[[ -n "${RCON_PORT}" ]] || die "не задан rcon.port (или RCON_PORT)"
|
||||
[[ -n "${RCON_PASSWORD}" ]] || die "не задан rcon.password (или RCON_PASSWORD)"
|
||||
|
||||
rcon_exec "list" >/dev/null || die "RCON не отвечает (${RCON_HOST}:${RCON_PORT})"
|
||||
|
||||
log "Старт почасовой очистки предметов на земле (${MINECRAFT_SERVICE})."
|
||||
|
||||
rcon_say "[Сервер] Очистка лежащих предметов через 10 минут!"
|
||||
sleep 300
|
||||
|
||||
rcon_say "[Сервер] Очистка предметов через 5 минут!"
|
||||
sleep 240
|
||||
|
||||
rcon_say "[Сервер] Очистка предметов через 1 минуту!"
|
||||
sleep 30
|
||||
|
||||
rcon_say "[Сервер] Очистка предметов через 30 секунд!"
|
||||
sleep 25
|
||||
|
||||
for n in 5 4 3 2 1; do
|
||||
rcon_say "[Сервер] $n"
|
||||
sleep 1
|
||||
done
|
||||
|
||||
log "Выполняю: ${CLEAR_ITEMS_RCON_CMD}"
|
||||
rcon_exec "${CLEAR_ITEMS_RCON_CMD}"
|
||||
rcon_say "[Сервер] Лежащие предметы очищены."
|
||||
|
||||
log "Готово."
|
||||
@@ -0,0 +1,97 @@
|
||||
#General settings
|
||||
[general]
|
||||
#Dimensions where hostile mobs will not spawn. Ex: ["minecraft:overworld", "undergarden:undergarden"]. . Run /forge dimensions for a list.
|
||||
dimensionBlacklist = []
|
||||
#Spawn a book in the players inventory on login
|
||||
spawnBook = true
|
||||
#How much mana whirlisprigs consume per generation
|
||||
# Default: 250
|
||||
# Range: 0 ~ 10000
|
||||
sylphManaCost = 250
|
||||
#How much progress whirlisprigs must accumulate before creating resources
|
||||
# Default: 250
|
||||
# Range: 0 ~ 10000
|
||||
whirlisprigProgress = 250
|
||||
#Should the Wilden Hunter attack animals?
|
||||
hunterHuntsAnimals = false
|
||||
#Should the Wilden Stalker attack animals?
|
||||
stalkerHuntsAnimals = false
|
||||
#Should the Wilden Defender attack animals?
|
||||
defenderHuntsAnimals = false
|
||||
#Should the Wilden Chimera dive bomb destroy blocks?
|
||||
destructiveDiveBomb = true
|
||||
#Archwood forest spawn weight
|
||||
# Default: 2
|
||||
# Range: > 0
|
||||
archwoodForest = 2
|
||||
#How many inventories can lectern support per bookwyrm
|
||||
# Default: 8
|
||||
# Range: > 1
|
||||
bookwyrmLimit = 8
|
||||
|
||||
[drygmy_production]
|
||||
#How much source drygmys consume per generation
|
||||
# Default: 1000
|
||||
# Range: 0 ~ 10000
|
||||
drygmyManaCost = 1000
|
||||
#How many channels must occur before a drygmy produces loot
|
||||
# Default: 20
|
||||
# Range: 0 ~ 300
|
||||
drygmyMaxProgress = 20
|
||||
#Bonus number of items a drygmy produces per unique mob
|
||||
# Default: 2
|
||||
# Range: 0 ~ 300
|
||||
drygmyUniqueBonus = 2
|
||||
#Base number of items a drygmy produces per cycle before bonuses.
|
||||
# Default: 1
|
||||
# Range: > -2147483648
|
||||
drygmyBaseItems = 1
|
||||
#Max Bonus number of items a drygmy produces from nearby entities. Each entity equals 1 item.
|
||||
# Default: 5
|
||||
# Range: 0 ~ 300
|
||||
drygmyQuantityCap = 5
|
||||
|
||||
[alakarkinos]
|
||||
#How much mana alakarkinos consume per generation
|
||||
# Default: 1000
|
||||
# Range: 0 ~ 10000
|
||||
alakarkinosSourceCost = 1000
|
||||
|
||||
#Items
|
||||
[item]
|
||||
#Spawn Caster Tomes in Dungeon Loot?
|
||||
spawnTomes = true
|
||||
#How much mana the Ring of Jumping consumes per jump
|
||||
# Default: 30
|
||||
# Range: 0 ~ 10000
|
||||
jumpRingCost = 30
|
||||
#How much durability to repair armor by every 10 seconds without any Thread of Repairing
|
||||
# Default: 1
|
||||
# Range: 0 ~ 10000
|
||||
baseArmorRepairRate = 1
|
||||
|
||||
#Blocks
|
||||
[block]
|
||||
#How much potion a melder takes from each input jar. 100 = 1 potion
|
||||
# Default: 200
|
||||
# Range: > 100
|
||||
melderInputCost = 200
|
||||
#How much potion a melder outputs per cycle. 100 = 1 potion
|
||||
# Default: 100
|
||||
# Range: > 100
|
||||
melderOutput = 100
|
||||
#How much source a melder takes per cycle
|
||||
# Default: 300
|
||||
# Range: > 0
|
||||
melderSourceCost = 300
|
||||
#The max potion level the enchanted flask can grant. This isnt needed unless you have an infinite potion leveling exploit.
|
||||
# Default: 255
|
||||
# Range: > 2
|
||||
enchantedFlaskCap = 255
|
||||
|
||||
#Debug
|
||||
[debug]
|
||||
#Max number of log events to keep on entities. Lowering this number may make it difficult to debug why your entities are stuck.
|
||||
# Default: 100
|
||||
# Range: > 0
|
||||
maxLogEvents = 100
|
||||
@@ -0,0 +1,80 @@
|
||||
#Blocks
|
||||
[blocks]
|
||||
#Maximum storage lectern linking range
|
||||
# Default: 30
|
||||
# Range: > 1
|
||||
lecternLinkRange = 30
|
||||
#Maximum range of the decor blossom
|
||||
# Default: 30
|
||||
# Range: > 1
|
||||
decorBlossomRange = 30
|
||||
|
||||
#Mana
|
||||
[mana]
|
||||
#Base mana regen in seconds
|
||||
# Default: 5
|
||||
# Range: > 0
|
||||
baseRegen = 5
|
||||
#Base max mana
|
||||
# Default: 100
|
||||
# Range: > 0
|
||||
baseMax = 100
|
||||
#How often max and regen will be calculated, in ticks. NOTE: Having the base mana regen AT LEAST this value is recommended.
|
||||
# Default: 5
|
||||
# Range: 1 ~ 20
|
||||
updateInterval = 5
|
||||
#Max mana bonus per glyph
|
||||
# Default: 15
|
||||
# Range: > 0
|
||||
glyphmax = 15
|
||||
#Max mana bonus for tier of book
|
||||
# Default: 50
|
||||
# Range: > 0
|
||||
tierMax = 50
|
||||
#Mana regen bonus for tier of book
|
||||
# Default: 1
|
||||
# Range: > 0
|
||||
tierRegen = 1
|
||||
#Mana Boost value per level
|
||||
# Default: 25
|
||||
# Range: > 0
|
||||
manaBoost = 25
|
||||
#(enchantment) Mana regen per second per level
|
||||
# Default: 2
|
||||
# Range: > 0
|
||||
manaRegenEnchantment = 2
|
||||
#Regen bonus per glyph
|
||||
# Default: 0.33
|
||||
# Range: 0.0 ~ 2.147483647E9
|
||||
glyphRegen = 0.33
|
||||
|
||||
[spell_casting]
|
||||
#Enforce augment cap on casting? Turn this off if you are a pack maker and want to create more powerful items than players.
|
||||
enforceCapOnCast = true
|
||||
#Enforce glyph per spell limit on casting? Turn this off if you are a pack maker and want to create more powerful items than players.
|
||||
enforceGlyphLimitOnCast = true
|
||||
|
||||
[item]
|
||||
#Cost per glyph in a codex
|
||||
# Default: 10
|
||||
# Range: > 0
|
||||
codexCost = 10
|
||||
|
||||
[warp_portals]
|
||||
#Enable warp portals?
|
||||
enableWarpPortals = true
|
||||
|
||||
#Infinite Spells Mode
|
||||
[spell_length]
|
||||
#If Enabled, the value below will be added to the base glyph limit for spellbooks.
|
||||
infiniteSpells = false
|
||||
#Only used if infinite spells is true, increases or decreases the spell length limit in spellbooks..
|
||||
# Default: 30
|
||||
# Range: -9 ~ 1000
|
||||
infiniteSpellLimit = 30
|
||||
|
||||
[planarium]
|
||||
#The number of game ticks the planarium will batch notifying nearby players if the dimension was changed.
|
||||
# Default: 5
|
||||
# Range: 1 ~ 200
|
||||
planariumUpdateRate = 5
|
||||
@@ -0,0 +1,8 @@
|
||||
#Mana
|
||||
[mana]
|
||||
#Regen bonus per potion level
|
||||
# Default: 10
|
||||
# Range: > 0
|
||||
potionRegen = 10
|
||||
#If shady villagers can be converted by placing an Arcane Core near a villager. Does not remove or disable existing villagers.
|
||||
shadyVillagerEnabled = true
|
||||
@@ -0,0 +1,18 @@
|
||||
#General settings
|
||||
[general]
|
||||
#Is Enabled?
|
||||
enabled = true
|
||||
#Cost
|
||||
# Default: 10
|
||||
# Range: > -2147483648
|
||||
cost = 10
|
||||
#Is Starter Glyph?
|
||||
starter = false
|
||||
#The maximum number of times this glyph may appear in a single spell
|
||||
# Default: 2147483647
|
||||
# Range: > 1
|
||||
per_spell_limit = 2147483647
|
||||
#The tier of the glyph
|
||||
# Default: 2
|
||||
# Range: 1 ~ 99
|
||||
glyph_tier = 2
|
||||
@@ -0,0 +1,18 @@
|
||||
#General settings
|
||||
[general]
|
||||
#Is Enabled?
|
||||
enabled = true
|
||||
#Cost
|
||||
# Default: 20
|
||||
# Range: > -2147483648
|
||||
cost = 20
|
||||
#Is Starter Glyph?
|
||||
starter = false
|
||||
#The maximum number of times this glyph may appear in a single spell
|
||||
# Default: 2147483647
|
||||
# Range: > 1
|
||||
per_spell_limit = 2147483647
|
||||
#The tier of the glyph
|
||||
# Default: 1
|
||||
# Range: 1 ~ 99
|
||||
glyph_tier = 1
|
||||
@@ -0,0 +1,35 @@
|
||||
#General settings
|
||||
[general]
|
||||
#Is Enabled?
|
||||
enabled = true
|
||||
#Cost
|
||||
# Default: 200
|
||||
# Range: > -2147483648
|
||||
cost = 200
|
||||
#Is Starter Glyph?
|
||||
starter = false
|
||||
#The maximum number of times this glyph may appear in a single spell
|
||||
# Default: 2147483647
|
||||
# Range: > 1
|
||||
per_spell_limit = 2147483647
|
||||
#The tier of the glyph
|
||||
# Default: 2
|
||||
# Range: 1 ~ 99
|
||||
glyph_tier = 2
|
||||
#Limits the number of times a given augment may be applied to a given effect
|
||||
#Example entry: "glyph_amplify=5"
|
||||
augment_limits = []
|
||||
#How much an augment should cost when used on this effect or form. This overrides the default cost in the augment config.
|
||||
#Example entry: "glyph_amplify=50"
|
||||
augment_cost_overrides = []
|
||||
#Prevents the given glyph from being used in the same spell as the given glyph
|
||||
#Example entry: "glyph_burst"
|
||||
invalid_combos = []
|
||||
#Base duration in seconds
|
||||
# Default: 60
|
||||
# Range: > 0
|
||||
duration = 60
|
||||
#Extend time duration, in seconds
|
||||
# Default: 60
|
||||
# Range: > 0
|
||||
extend_time = 60
|
||||
@@ -0,0 +1,18 @@
|
||||
#General settings
|
||||
[general]
|
||||
#Is Enabled?
|
||||
enabled = true
|
||||
#Cost
|
||||
# Default: 35
|
||||
# Range: > -2147483648
|
||||
cost = 35
|
||||
#Is Starter Glyph?
|
||||
starter = false
|
||||
#The maximum number of times this glyph may appear in a single spell
|
||||
# Default: 2147483647
|
||||
# Range: > 1
|
||||
per_spell_limit = 2147483647
|
||||
#The tier of the glyph
|
||||
# Default: 2
|
||||
# Range: 1 ~ 99
|
||||
glyph_tier = 2
|
||||
@@ -0,0 +1,34 @@
|
||||
#General settings
|
||||
[general]
|
||||
#Is Enabled?
|
||||
enabled = true
|
||||
#Cost
|
||||
# Default: 50
|
||||
# Range: > -2147483648
|
||||
cost = 50
|
||||
#Is Starter Glyph?
|
||||
starter = false
|
||||
#The maximum number of times this glyph may appear in a single spell
|
||||
# Default: 2147483647
|
||||
# Range: > 1
|
||||
per_spell_limit = 2147483647
|
||||
#The tier of the glyph
|
||||
# Default: 3
|
||||
# Range: 1 ~ 99
|
||||
glyph_tier = 3
|
||||
#Limits the number of times a given augment may be applied to a given effect
|
||||
#Example entry: "glyph_amplify=5"
|
||||
augment_limits = []
|
||||
#How much an augment should cost when used on this effect or form. This overrides the default cost in the augment config.
|
||||
#Example entry: "glyph_amplify=50"
|
||||
augment_cost_overrides = []
|
||||
#Prevents the given glyph from being used in the same spell as the given glyph
|
||||
#Example entry: "glyph_burst"
|
||||
invalid_combos = []
|
||||
#Base teleport distance
|
||||
# Default: 8
|
||||
# Range: > 0
|
||||
distance = 8
|
||||
# Default: 3.0
|
||||
# Range: 0.0 ~ 2.147483647E9
|
||||
amplify = 3.0
|
||||
@@ -0,0 +1,35 @@
|
||||
#General settings
|
||||
[general]
|
||||
#Is Enabled?
|
||||
enabled = true
|
||||
#Cost
|
||||
# Default: 50
|
||||
# Range: > -2147483648
|
||||
cost = 50
|
||||
#Is Starter Glyph?
|
||||
starter = false
|
||||
#The maximum number of times this glyph may appear in a single spell
|
||||
# Default: 2147483647
|
||||
# Range: > 1
|
||||
per_spell_limit = 2147483647
|
||||
#The tier of the glyph
|
||||
# Default: 1
|
||||
# Range: 1 ~ 99
|
||||
glyph_tier = 1
|
||||
#Limits the number of times a given augment may be applied to a given effect
|
||||
#Example entry: "glyph_amplify=5"
|
||||
augment_limits = []
|
||||
#How much an augment should cost when used on this effect or form. This overrides the default cost in the augment config.
|
||||
#Example entry: "glyph_amplify=50"
|
||||
augment_cost_overrides = []
|
||||
#Prevents the given glyph from being used in the same spell as the given glyph
|
||||
#Example entry: "glyph_burst"
|
||||
invalid_combos = []
|
||||
#Potion duration, in seconds
|
||||
# Default: 30
|
||||
# Range: > 0
|
||||
potion_time = 30
|
||||
#Extend time duration, in seconds
|
||||
# Default: 8
|
||||
# Range: > 0
|
||||
extend_time = 8
|
||||
@@ -0,0 +1,27 @@
|
||||
#General settings
|
||||
[general]
|
||||
#Is Enabled?
|
||||
enabled = true
|
||||
#Cost
|
||||
# Default: 10
|
||||
# Range: > -2147483648
|
||||
cost = 10
|
||||
#Is Starter Glyph?
|
||||
starter = true
|
||||
#The maximum number of times this glyph may appear in a single spell
|
||||
# Default: 2147483647
|
||||
# Range: > 1
|
||||
per_spell_limit = 2147483647
|
||||
#The tier of the glyph
|
||||
# Default: 1
|
||||
# Range: 1 ~ 99
|
||||
glyph_tier = 1
|
||||
#Limits the number of times a given augment may be applied to a given effect
|
||||
#Example entry: "glyph_amplify=5"
|
||||
augment_limits = ["ars_nouveau:glyph_fortune=4", "ars_nouveau:glyph_sensitive=1"]
|
||||
#How much an augment should cost when used on this effect or form. This overrides the default cost in the augment config.
|
||||
#Example entry: "glyph_amplify=50"
|
||||
augment_cost_overrides = []
|
||||
#Prevents the given glyph from being used in the same spell as the given glyph
|
||||
#Example entry: "glyph_burst"
|
||||
invalid_combos = []
|
||||
@@ -0,0 +1,37 @@
|
||||
#General settings
|
||||
[general]
|
||||
#Is Enabled?
|
||||
enabled = true
|
||||
#Cost
|
||||
# Default: 20
|
||||
# Range: > -2147483648
|
||||
cost = 20
|
||||
#Is Starter Glyph?
|
||||
starter = false
|
||||
#The maximum number of times this glyph may appear in a single spell
|
||||
# Default: 2147483647
|
||||
# Range: > 1
|
||||
per_spell_limit = 2147483647
|
||||
#The tier of the glyph
|
||||
# Default: 1
|
||||
# Range: 1 ~ 99
|
||||
glyph_tier = 1
|
||||
#Limits the number of times a given augment may be applied to a given effect
|
||||
#Example entry: "glyph_amplify=5"
|
||||
augment_limits = []
|
||||
#How much an augment should cost when used on this effect or form. This overrides the default cost in the augment config.
|
||||
#Example entry: "glyph_amplify=50"
|
||||
augment_cost_overrides = []
|
||||
#Prevents the given glyph from being used in the same spell as the given glyph
|
||||
#Example entry: "glyph_burst"
|
||||
invalid_combos = []
|
||||
# Default: 5.0
|
||||
# Range: 0.0 ~ 2.147483647E9
|
||||
damage = 5.0
|
||||
# Default: 2.0
|
||||
# Range: 0.0 ~ 2.147483647E9
|
||||
amplify = 2.0
|
||||
#Extend time duration, in seconds
|
||||
# Default: 3
|
||||
# Range: > 0
|
||||
extend_time = 3
|
||||
@@ -0,0 +1,27 @@
|
||||
#General settings
|
||||
[general]
|
||||
#Is Enabled?
|
||||
enabled = true
|
||||
#Cost
|
||||
# Default: 500
|
||||
# Range: > -2147483648
|
||||
cost = 500
|
||||
#Is Starter Glyph?
|
||||
starter = false
|
||||
#The maximum number of times this glyph may appear in a single spell
|
||||
# Default: 1
|
||||
# Range: 1 ~ 1
|
||||
per_spell_limit = 1
|
||||
#The tier of the glyph
|
||||
# Default: 3
|
||||
# Range: 1 ~ 99
|
||||
glyph_tier = 3
|
||||
#Limits the number of times a given augment may be applied to a given effect
|
||||
#Example entry: "glyph_amplify=5"
|
||||
augment_limits = ["ars_nouveau:glyph_sensitive=1"]
|
||||
#How much an augment should cost when used on this effect or form. This overrides the default cost in the augment config.
|
||||
#Example entry: "glyph_amplify=50"
|
||||
augment_cost_overrides = []
|
||||
#Prevents the given glyph from being used in the same spell as the given glyph
|
||||
#Example entry: "glyph_burst"
|
||||
invalid_combos = ["ars_nouveau:glyph_wall", "ars_nouveau:glyph_linger"]
|
||||
@@ -0,0 +1,41 @@
|
||||
#General settings
|
||||
[general]
|
||||
#Is Enabled?
|
||||
enabled = true
|
||||
#Cost
|
||||
# Default: 30
|
||||
# Range: > -2147483648
|
||||
cost = 30
|
||||
#Is Starter Glyph?
|
||||
starter = false
|
||||
#The maximum number of times this glyph may appear in a single spell
|
||||
# Default: 2147483647
|
||||
# Range: > 1
|
||||
per_spell_limit = 2147483647
|
||||
#The tier of the glyph
|
||||
# Default: 2
|
||||
# Range: 1 ~ 99
|
||||
glyph_tier = 2
|
||||
#Limits the number of times a given augment may be applied to a given effect
|
||||
#Example entry: "glyph_amplify=5"
|
||||
augment_limits = ["ars_nouveau:glyph_amplify=2", "ars_nouveau:glyph_aoe=1"]
|
||||
#How much an augment should cost when used on this effect or form. This overrides the default cost in the augment config.
|
||||
#Example entry: "glyph_amplify=50"
|
||||
augment_cost_overrides = []
|
||||
#Prevents the given glyph from being used in the same spell as the given glyph
|
||||
#Example entry: "glyph_burst"
|
||||
invalid_combos = []
|
||||
# Default: 6.0
|
||||
# Range: 0.0 ~ 2.147483647E9
|
||||
damage = 6.0
|
||||
# Default: 2.5
|
||||
# Range: 0.0 ~ 2.147483647E9
|
||||
amplify = 2.5
|
||||
#Potion duration, in seconds
|
||||
# Default: 5
|
||||
# Range: > 0
|
||||
potion_time = 5
|
||||
#Extend time duration, in seconds
|
||||
# Default: 1
|
||||
# Range: > 0
|
||||
extend_time = 1
|
||||
@@ -0,0 +1,35 @@
|
||||
#General settings
|
||||
[general]
|
||||
#Is Enabled?
|
||||
enabled = true
|
||||
#Cost
|
||||
# Default: 80
|
||||
# Range: > -2147483648
|
||||
cost = 80
|
||||
#Is Starter Glyph?
|
||||
starter = false
|
||||
#The maximum number of times this glyph may appear in a single spell
|
||||
# Default: 2147483647
|
||||
# Range: > 1
|
||||
per_spell_limit = 2147483647
|
||||
#The tier of the glyph
|
||||
# Default: 2
|
||||
# Range: 1 ~ 99
|
||||
glyph_tier = 2
|
||||
#Limits the number of times a given augment may be applied to a given effect
|
||||
#Example entry: "glyph_amplify=5"
|
||||
augment_limits = ["ars_nouveau:glyph_sensitive=1"]
|
||||
#How much an augment should cost when used on this effect or form. This overrides the default cost in the augment config.
|
||||
#Example entry: "glyph_amplify=50"
|
||||
augment_cost_overrides = []
|
||||
#Prevents the given glyph from being used in the same spell as the given glyph
|
||||
#Example entry: "glyph_burst"
|
||||
invalid_combos = []
|
||||
#Potion duration, in seconds
|
||||
# Default: 20
|
||||
# Range: > 0
|
||||
potion_time = 20
|
||||
#Extend time duration, in seconds
|
||||
# Default: 10
|
||||
# Range: > 0
|
||||
extend_time = 10
|
||||
@@ -0,0 +1,27 @@
|
||||
#General settings
|
||||
[general]
|
||||
#Is Enabled?
|
||||
enabled = true
|
||||
#Cost
|
||||
# Default: 50
|
||||
# Range: > -2147483648
|
||||
cost = 50
|
||||
#Is Starter Glyph?
|
||||
starter = false
|
||||
#The maximum number of times this glyph may appear in a single spell
|
||||
# Default: 2147483647
|
||||
# Range: > 1
|
||||
per_spell_limit = 2147483647
|
||||
#The tier of the glyph
|
||||
# Default: 1
|
||||
# Range: 1 ~ 99
|
||||
glyph_tier = 1
|
||||
#Limits the number of times a given augment may be applied to a given effect
|
||||
#Example entry: "glyph_amplify=5"
|
||||
augment_limits = []
|
||||
#How much an augment should cost when used on this effect or form. This overrides the default cost in the augment config.
|
||||
#Example entry: "glyph_amplify=50"
|
||||
augment_cost_overrides = []
|
||||
#Prevents the given glyph from being used in the same spell as the given glyph
|
||||
#Example entry: "glyph_burst"
|
||||
invalid_combos = []
|
||||
@@ -0,0 +1,33 @@
|
||||
#General settings
|
||||
[general]
|
||||
#Is Enabled?
|
||||
enabled = true
|
||||
#Cost
|
||||
# Default: 30
|
||||
# Range: > -2147483648
|
||||
cost = 30
|
||||
#Is Starter Glyph?
|
||||
starter = false
|
||||
#The maximum number of times this glyph may appear in a single spell
|
||||
# Default: 2147483647
|
||||
# Range: > 1
|
||||
per_spell_limit = 2147483647
|
||||
#The tier of the glyph
|
||||
# Default: 2
|
||||
# Range: 1 ~ 99
|
||||
glyph_tier = 2
|
||||
#Limits the number of times a given augment may be applied to a given effect
|
||||
#Example entry: "glyph_amplify=5"
|
||||
augment_limits = ["ars_nouveau:glyph_sensitive=1", "ars_nouveau:glyph_amplify=2"]
|
||||
#How much an augment should cost when used on this effect or form. This overrides the default cost in the augment config.
|
||||
#Example entry: "glyph_amplify=50"
|
||||
augment_cost_overrides = []
|
||||
#Prevents the given glyph from being used in the same spell as the given glyph
|
||||
#Example entry: "glyph_burst"
|
||||
invalid_combos = []
|
||||
# Default: 3.0
|
||||
# Range: 0.0 ~ 2.147483647E9
|
||||
damage = 3.0
|
||||
# Default: 1.0
|
||||
# Range: 0.0 ~ 2.147483647E9
|
||||
amplify = 1.0
|
||||
@@ -0,0 +1,33 @@
|
||||
#General settings
|
||||
[general]
|
||||
#Is Enabled?
|
||||
enabled = true
|
||||
#Cost
|
||||
# Default: 0
|
||||
# Range: > -2147483648
|
||||
cost = 0
|
||||
#Is Starter Glyph?
|
||||
starter = false
|
||||
#The maximum number of times this glyph may appear in a single spell
|
||||
# Default: 2147483647
|
||||
# Range: > 1
|
||||
per_spell_limit = 2147483647
|
||||
#The tier of the glyph
|
||||
# Default: 1
|
||||
# Range: 1 ~ 99
|
||||
glyph_tier = 1
|
||||
#Limits the number of times a given augment may be applied to a given effect
|
||||
#Example entry: "glyph_amplify=5"
|
||||
augment_limits = ["ars_nouveau:glyph_amplify=2"]
|
||||
#How much an augment should cost when used on this effect or form. This overrides the default cost in the augment config.
|
||||
#Example entry: "glyph_amplify=50"
|
||||
augment_cost_overrides = []
|
||||
#Prevents the given glyph from being used in the same spell as the given glyph
|
||||
#Example entry: "glyph_burst"
|
||||
invalid_combos = []
|
||||
# Default: 1.0
|
||||
# Range: 0.0 ~ 2.147483647E9
|
||||
damage = 1.0
|
||||
# Default: 1.0
|
||||
# Range: 0.0 ~ 2.147483647E9
|
||||
amplify = 1.0
|
||||
@@ -0,0 +1,18 @@
|
||||
#General settings
|
||||
[general]
|
||||
#Is Enabled?
|
||||
enabled = true
|
||||
#Cost
|
||||
# Default: 0
|
||||
# Range: > -2147483648
|
||||
cost = 0
|
||||
#Is Starter Glyph?
|
||||
starter = false
|
||||
#The maximum number of times this glyph may appear in a single spell
|
||||
# Default: 2147483647
|
||||
# Range: > 1
|
||||
per_spell_limit = 2147483647
|
||||
#The tier of the glyph
|
||||
# Default: 2
|
||||
# Range: 1 ~ 99
|
||||
glyph_tier = 2
|
||||
@@ -0,0 +1,18 @@
|
||||
#General settings
|
||||
[general]
|
||||
#Is Enabled?
|
||||
enabled = true
|
||||
#Cost
|
||||
# Default: 5
|
||||
# Range: > -2147483648
|
||||
cost = 5
|
||||
#Is Starter Glyph?
|
||||
starter = false
|
||||
#The maximum number of times this glyph may appear in a single spell
|
||||
# Default: 2147483647
|
||||
# Range: > 1
|
||||
per_spell_limit = 2147483647
|
||||
#The tier of the glyph
|
||||
# Default: 2
|
||||
# Range: 1 ~ 99
|
||||
glyph_tier = 2
|
||||
@@ -0,0 +1,43 @@
|
||||
#General settings
|
||||
[general]
|
||||
#Is Enabled?
|
||||
enabled = true
|
||||
#Cost
|
||||
# Default: 0
|
||||
# Range: > -2147483648
|
||||
cost = 0
|
||||
#Is Starter Glyph?
|
||||
starter = false
|
||||
#The maximum number of times this glyph may appear in a single spell
|
||||
# Default: 2147483647
|
||||
# Range: > 1
|
||||
per_spell_limit = 2147483647
|
||||
#The tier of the glyph
|
||||
# Default: 1
|
||||
# Range: 1 ~ 99
|
||||
glyph_tier = 1
|
||||
#Limits the number of times a given augment may be applied to a given effect
|
||||
#Example entry: "glyph_amplify=5"
|
||||
augment_limits = []
|
||||
#How much an augment should cost when used on this effect or form. This overrides the default cost in the augment config.
|
||||
#Example entry: "glyph_amplify=50"
|
||||
augment_cost_overrides = []
|
||||
#Prevents the given glyph from being used in the same spell as the given glyph
|
||||
#Example entry: "glyph_burst"
|
||||
invalid_combos = []
|
||||
#Extend time duration, in seconds
|
||||
# Default: 1
|
||||
# Range: > 0
|
||||
extend_time = 1
|
||||
#Duration down time, in ticks
|
||||
# Default: 10
|
||||
# Range: > 0
|
||||
duration_down_time = 10
|
||||
#The base duration of the delay effect in ticks.
|
||||
# Default: 20
|
||||
# Range: > 0
|
||||
base_duration = 20
|
||||
#Randomize chance, in percentage (0-1 = 0% - 100%)
|
||||
# Default: 0.25
|
||||
# Range: 0.0 ~ 2.147483647E9
|
||||
randomize_chance = 0.25
|
||||
@@ -0,0 +1,27 @@
|
||||
#General settings
|
||||
[general]
|
||||
#Is Enabled?
|
||||
enabled = true
|
||||
#Cost
|
||||
# Default: 30
|
||||
# Range: > -2147483648
|
||||
cost = 30
|
||||
#Is Starter Glyph?
|
||||
starter = false
|
||||
#The maximum number of times this glyph may appear in a single spell
|
||||
# Default: 2147483647
|
||||
# Range: > 1
|
||||
per_spell_limit = 2147483647
|
||||
#The tier of the glyph
|
||||
# Default: 1
|
||||
# Range: 1 ~ 99
|
||||
glyph_tier = 1
|
||||
#Limits the number of times a given augment may be applied to a given effect
|
||||
#Example entry: "glyph_amplify=5"
|
||||
augment_limits = []
|
||||
#How much an augment should cost when used on this effect or form. This overrides the default cost in the augment config.
|
||||
#Example entry: "glyph_amplify=50"
|
||||
augment_cost_overrides = []
|
||||
#Prevents the given glyph from being used in the same spell as the given glyph
|
||||
#Example entry: "glyph_burst"
|
||||
invalid_combos = []
|
||||
@@ -0,0 +1,18 @@
|
||||
#General settings
|
||||
[general]
|
||||
#Is Enabled?
|
||||
enabled = true
|
||||
#Cost
|
||||
# Default: 15
|
||||
# Range: > -2147483648
|
||||
cost = 15
|
||||
#Is Starter Glyph?
|
||||
starter = false
|
||||
#The maximum number of times this glyph may appear in a single spell
|
||||
# Default: 2147483647
|
||||
# Range: > 1
|
||||
per_spell_limit = 2147483647
|
||||
#The tier of the glyph
|
||||
# Default: 2
|
||||
# Range: 1 ~ 99
|
||||
glyph_tier = 2
|
||||
@@ -0,0 +1,27 @@
|
||||
#General settings
|
||||
[general]
|
||||
#Is Enabled?
|
||||
enabled = true
|
||||
#Cost
|
||||
# Default: 50
|
||||
# Range: > -2147483648
|
||||
cost = 50
|
||||
#Is Starter Glyph?
|
||||
starter = false
|
||||
#The maximum number of times this glyph may appear in a single spell
|
||||
# Default: 2147483647
|
||||
# Range: > 1
|
||||
per_spell_limit = 2147483647
|
||||
#The tier of the glyph
|
||||
# Default: 2
|
||||
# Range: 1 ~ 99
|
||||
glyph_tier = 2
|
||||
#Limits the number of times a given augment may be applied to a given effect
|
||||
#Example entry: "glyph_amplify=5"
|
||||
augment_limits = []
|
||||
#How much an augment should cost when used on this effect or form. This overrides the default cost in the augment config.
|
||||
#Example entry: "glyph_amplify=50"
|
||||
augment_cost_overrides = []
|
||||
#Prevents the given glyph from being used in the same spell as the given glyph
|
||||
#Example entry: "glyph_burst"
|
||||
invalid_combos = []
|
||||
@@ -0,0 +1,27 @@
|
||||
#General settings
|
||||
[general]
|
||||
#Is Enabled?
|
||||
enabled = true
|
||||
#Cost
|
||||
# Default: 50
|
||||
# Range: > -2147483648
|
||||
cost = 50
|
||||
#Is Starter Glyph?
|
||||
starter = false
|
||||
#The maximum number of times this glyph may appear in a single spell
|
||||
# Default: 2147483647
|
||||
# Range: > 1
|
||||
per_spell_limit = 2147483647
|
||||
#The tier of the glyph
|
||||
# Default: 1
|
||||
# Range: 1 ~ 99
|
||||
glyph_tier = 1
|
||||
#Limits the number of times a given augment may be applied to a given effect
|
||||
#Example entry: "glyph_amplify=5"
|
||||
augment_limits = []
|
||||
#How much an augment should cost when used on this effect or form. This overrides the default cost in the augment config.
|
||||
#Example entry: "glyph_amplify=50"
|
||||
augment_cost_overrides = []
|
||||
#Prevents the given glyph from being used in the same spell as the given glyph
|
||||
#Example entry: "glyph_burst"
|
||||
invalid_combos = []
|
||||
@@ -0,0 +1,27 @@
|
||||
#General settings
|
||||
[general]
|
||||
#Is Enabled?
|
||||
enabled = true
|
||||
#Cost
|
||||
# Default: 50
|
||||
# Range: > -2147483648
|
||||
cost = 50
|
||||
#Is Starter Glyph?
|
||||
starter = false
|
||||
#The maximum number of times this glyph may appear in a single spell
|
||||
# Default: 2147483647
|
||||
# Range: > 1
|
||||
per_spell_limit = 2147483647
|
||||
#The tier of the glyph
|
||||
# Default: 2
|
||||
# Range: 1 ~ 99
|
||||
glyph_tier = 2
|
||||
#Limits the number of times a given augment may be applied to a given effect
|
||||
#Example entry: "glyph_amplify=5"
|
||||
augment_limits = []
|
||||
#How much an augment should cost when used on this effect or form. This overrides the default cost in the augment config.
|
||||
#Example entry: "glyph_amplify=50"
|
||||
augment_cost_overrides = []
|
||||
#Prevents the given glyph from being used in the same spell as the given glyph
|
||||
#Example entry: "glyph_burst"
|
||||
invalid_combos = []
|
||||
@@ -0,0 +1,45 @@
|
||||
#General settings
|
||||
[general]
|
||||
#Is Enabled?
|
||||
enabled = true
|
||||
#Cost
|
||||
# Default: 200
|
||||
# Range: > -2147483648
|
||||
cost = 200
|
||||
#Is Starter Glyph?
|
||||
starter = false
|
||||
#The maximum number of times this glyph may appear in a single spell
|
||||
# Default: 2147483647
|
||||
# Range: > 1
|
||||
per_spell_limit = 2147483647
|
||||
#The tier of the glyph
|
||||
# Default: 2
|
||||
# Range: 1 ~ 99
|
||||
glyph_tier = 2
|
||||
#Limits the number of times a given augment may be applied to a given effect
|
||||
#Example entry: "glyph_amplify=5"
|
||||
augment_limits = ["ars_nouveau:glyph_amplify=2"]
|
||||
#How much an augment should cost when used on this effect or form. This overrides the default cost in the augment config.
|
||||
#Example entry: "glyph_amplify=50"
|
||||
augment_cost_overrides = []
|
||||
#Prevents the given glyph from being used in the same spell as the given glyph
|
||||
#Example entry: "glyph_burst"
|
||||
invalid_combos = []
|
||||
# Default: 0.5
|
||||
# Range: 0.0 ~ 2.147483647E9
|
||||
amplify = 0.5
|
||||
#Explosion base intensity
|
||||
# Default: 0.75
|
||||
# Range: 0.0 ~ 100.0
|
||||
base = 0.75
|
||||
#AOE intensity bonus
|
||||
# Default: 1.5
|
||||
# Range: 0.0 ~ 100.0
|
||||
aoe_bonus = 1.5
|
||||
# Default: 6.0
|
||||
# Range: 0.0 ~ 2.147483647E9
|
||||
damage = 6.0
|
||||
#Additional damage per amplify
|
||||
# Default: 2.5
|
||||
# Range: 0.0 ~ 2.147483647E9
|
||||
amp_damage = 2.5
|
||||
@@ -0,0 +1,18 @@
|
||||
#General settings
|
||||
[general]
|
||||
#Is Enabled?
|
||||
enabled = true
|
||||
#Cost
|
||||
# Default: 10
|
||||
# Range: > -2147483648
|
||||
cost = 10
|
||||
#Is Starter Glyph?
|
||||
starter = false
|
||||
#The maximum number of times this glyph may appear in a single spell
|
||||
# Default: 2147483647
|
||||
# Range: > 1
|
||||
per_spell_limit = 2147483647
|
||||
#The tier of the glyph
|
||||
# Default: 2
|
||||
# Range: 1 ~ 99
|
||||
glyph_tier = 2
|
||||
@@ -0,0 +1,18 @@
|
||||
#General settings
|
||||
[general]
|
||||
#Is Enabled?
|
||||
enabled = true
|
||||
#Cost
|
||||
# Default: 30
|
||||
# Range: > -2147483648
|
||||
cost = 30
|
||||
#Is Starter Glyph?
|
||||
starter = false
|
||||
#The maximum number of times this glyph may appear in a single spell
|
||||
# Default: 2147483647
|
||||
# Range: > 1
|
||||
per_spell_limit = 2147483647
|
||||
#The tier of the glyph
|
||||
# Default: 2
|
||||
# Range: 1 ~ 99
|
||||
glyph_tier = 2
|
||||
@@ -0,0 +1,33 @@
|
||||
#General settings
|
||||
[general]
|
||||
#Is Enabled?
|
||||
enabled = true
|
||||
#Cost
|
||||
# Default: 35
|
||||
# Range: > -2147483648
|
||||
cost = 35
|
||||
#Is Starter Glyph?
|
||||
starter = false
|
||||
#The maximum number of times this glyph may appear in a single spell
|
||||
# Default: 2147483647
|
||||
# Range: > 1
|
||||
per_spell_limit = 2147483647
|
||||
#The tier of the glyph
|
||||
# Default: 3
|
||||
# Range: 1 ~ 99
|
||||
glyph_tier = 3
|
||||
#Limits the number of times a given augment may be applied to a given effect
|
||||
#Example entry: "glyph_amplify=5"
|
||||
augment_limits = ["ars_nouveau:glyph_amplify=2"]
|
||||
#How much an augment should cost when used on this effect or form. This overrides the default cost in the augment config.
|
||||
#Example entry: "glyph_amplify=50"
|
||||
augment_cost_overrides = []
|
||||
#Prevents the given glyph from being used in the same spell as the given glyph
|
||||
#Example entry: "glyph_burst"
|
||||
invalid_combos = []
|
||||
# Default: 6.0
|
||||
# Range: 0.0 ~ 2.147483647E9
|
||||
damage = 6.0
|
||||
# Default: 3.0
|
||||
# Range: 0.0 ~ 2.147483647E9
|
||||
amplify = 3.0
|
||||
@@ -0,0 +1,35 @@
|
||||
#General settings
|
||||
[general]
|
||||
#Is Enabled?
|
||||
enabled = true
|
||||
#Cost
|
||||
# Default: 150
|
||||
# Range: > -2147483648
|
||||
cost = 150
|
||||
#Is Starter Glyph?
|
||||
starter = false
|
||||
#The maximum number of times this glyph may appear in a single spell
|
||||
# Default: 2147483647
|
||||
# Range: > 1
|
||||
per_spell_limit = 2147483647
|
||||
#The tier of the glyph
|
||||
# Default: 1
|
||||
# Range: 1 ~ 99
|
||||
glyph_tier = 1
|
||||
#Limits the number of times a given augment may be applied to a given effect
|
||||
#Example entry: "glyph_amplify=5"
|
||||
augment_limits = []
|
||||
#How much an augment should cost when used on this effect or form. This overrides the default cost in the augment config.
|
||||
#Example entry: "glyph_amplify=50"
|
||||
augment_cost_overrides = []
|
||||
#Prevents the given glyph from being used in the same spell as the given glyph
|
||||
#Example entry: "glyph_burst"
|
||||
invalid_combos = []
|
||||
#Base amount of harvested blocks
|
||||
# Default: 50
|
||||
# Range: > 0
|
||||
base_harvest = 50
|
||||
#Additional max blocks per AOE
|
||||
# Default: 50
|
||||
# Range: > 0
|
||||
aoe_bonus = 50
|
||||
@@ -0,0 +1,27 @@
|
||||
#General settings
|
||||
[general]
|
||||
#Is Enabled?
|
||||
enabled = true
|
||||
#Cost
|
||||
# Default: 50
|
||||
# Range: > -2147483648
|
||||
cost = 50
|
||||
#Is Starter Glyph?
|
||||
starter = false
|
||||
#The maximum number of times this glyph may appear in a single spell
|
||||
# Default: 2147483647
|
||||
# Range: > 1
|
||||
per_spell_limit = 2147483647
|
||||
#The tier of the glyph
|
||||
# Default: 2
|
||||
# Range: 1 ~ 99
|
||||
glyph_tier = 2
|
||||
#Limits the number of times a given augment may be applied to a given effect
|
||||
#Example entry: "glyph_amplify=5"
|
||||
augment_limits = ["ars_nouveau:glyph_amplify=2"]
|
||||
#How much an augment should cost when used on this effect or form. This overrides the default cost in the augment config.
|
||||
#Example entry: "glyph_amplify=50"
|
||||
augment_cost_overrides = []
|
||||
#Prevents the given glyph from being used in the same spell as the given glyph
|
||||
#Example entry: "glyph_burst"
|
||||
invalid_combos = []
|
||||
@@ -0,0 +1,37 @@
|
||||
#General settings
|
||||
[general]
|
||||
#Is Enabled?
|
||||
enabled = true
|
||||
#Cost
|
||||
# Default: 40
|
||||
# Range: > -2147483648
|
||||
cost = 40
|
||||
#Is Starter Glyph?
|
||||
starter = false
|
||||
#The maximum number of times this glyph may appear in a single spell
|
||||
# Default: 2147483647
|
||||
# Range: > 1
|
||||
per_spell_limit = 2147483647
|
||||
#The tier of the glyph
|
||||
# Default: 2
|
||||
# Range: 1 ~ 99
|
||||
glyph_tier = 2
|
||||
#Limits the number of times a given augment may be applied to a given effect
|
||||
#Example entry: "glyph_amplify=5"
|
||||
augment_limits = ["ars_nouveau:glyph_amplify=2"]
|
||||
#How much an augment should cost when used on this effect or form. This overrides the default cost in the augment config.
|
||||
#Example entry: "glyph_amplify=50"
|
||||
augment_cost_overrides = []
|
||||
#Prevents the given glyph from being used in the same spell as the given glyph
|
||||
#Example entry: "glyph_burst"
|
||||
invalid_combos = []
|
||||
# Default: 7.0
|
||||
# Range: 0.0 ~ 2.147483647E9
|
||||
damage = 7.0
|
||||
# Default: 3.0
|
||||
# Range: 0.0 ~ 2.147483647E9
|
||||
amplify = 3.0
|
||||
#Extend time duration, in seconds
|
||||
# Default: 1
|
||||
# Range: > 0
|
||||
extend_time = 1
|
||||
@@ -0,0 +1,18 @@
|
||||
#General settings
|
||||
[general]
|
||||
#Is Enabled?
|
||||
enabled = true
|
||||
#Cost
|
||||
# Default: 80
|
||||
# Range: > -2147483648
|
||||
cost = 80
|
||||
#Is Starter Glyph?
|
||||
starter = false
|
||||
#The maximum number of times this glyph may appear in a single spell
|
||||
# Default: 2147483647
|
||||
# Range: > 1
|
||||
per_spell_limit = 2147483647
|
||||
#The tier of the glyph
|
||||
# Default: 2
|
||||
# Range: 1 ~ 99
|
||||
glyph_tier = 2
|
||||
@@ -0,0 +1,35 @@
|
||||
#General settings
|
||||
[general]
|
||||
#Is Enabled?
|
||||
enabled = true
|
||||
#Cost
|
||||
# Default: 15
|
||||
# Range: > -2147483648
|
||||
cost = 15
|
||||
#Is Starter Glyph?
|
||||
starter = false
|
||||
#The maximum number of times this glyph may appear in a single spell
|
||||
# Default: 2147483647
|
||||
# Range: > 1
|
||||
per_spell_limit = 2147483647
|
||||
#The tier of the glyph
|
||||
# Default: 1
|
||||
# Range: 1 ~ 99
|
||||
glyph_tier = 1
|
||||
#Limits the number of times a given augment may be applied to a given effect
|
||||
#Example entry: "glyph_amplify=5"
|
||||
augment_limits = ["ars_nouveau:glyph_sensitive=1"]
|
||||
#How much an augment should cost when used on this effect or form. This overrides the default cost in the augment config.
|
||||
#Example entry: "glyph_amplify=50"
|
||||
augment_cost_overrides = []
|
||||
#Prevents the given glyph from being used in the same spell as the given glyph
|
||||
#Example entry: "glyph_burst"
|
||||
invalid_combos = []
|
||||
#Potion duration, in seconds
|
||||
# Default: 10
|
||||
# Range: > 0
|
||||
potion_time = 10
|
||||
#Extend time duration, in seconds
|
||||
# Default: 5
|
||||
# Range: > 0
|
||||
extend_time = 5
|
||||
@@ -0,0 +1,35 @@
|
||||
#General settings
|
||||
[general]
|
||||
#Is Enabled?
|
||||
enabled = true
|
||||
#Cost
|
||||
# Default: 100
|
||||
# Range: > -2147483648
|
||||
cost = 100
|
||||
#Is Starter Glyph?
|
||||
starter = false
|
||||
#The maximum number of times this glyph may appear in a single spell
|
||||
# Default: 2147483647
|
||||
# Range: > 1
|
||||
per_spell_limit = 2147483647
|
||||
#The tier of the glyph
|
||||
# Default: 3
|
||||
# Range: 1 ~ 99
|
||||
glyph_tier = 3
|
||||
#Limits the number of times a given augment may be applied to a given effect
|
||||
#Example entry: "glyph_amplify=5"
|
||||
augment_limits = []
|
||||
#How much an augment should cost when used on this effect or form. This overrides the default cost in the augment config.
|
||||
#Example entry: "glyph_amplify=50"
|
||||
augment_cost_overrides = []
|
||||
#Prevents the given glyph from being used in the same spell as the given glyph
|
||||
#Example entry: "glyph_burst"
|
||||
invalid_combos = []
|
||||
#Potion duration, in seconds
|
||||
# Default: 180
|
||||
# Range: > 0
|
||||
potion_time = 180
|
||||
#Extend time duration, in seconds
|
||||
# Default: 120
|
||||
# Range: > 0
|
||||
extend_time = 120
|
||||
@@ -0,0 +1,35 @@
|
||||
#General settings
|
||||
[general]
|
||||
#Is Enabled?
|
||||
enabled = true
|
||||
#Cost
|
||||
# Default: 15
|
||||
# Range: > -2147483648
|
||||
cost = 15
|
||||
#Is Starter Glyph?
|
||||
starter = false
|
||||
#The maximum number of times this glyph may appear in a single spell
|
||||
# Default: 2147483647
|
||||
# Range: > 1
|
||||
per_spell_limit = 2147483647
|
||||
#The tier of the glyph
|
||||
# Default: 2
|
||||
# Range: 1 ~ 99
|
||||
glyph_tier = 2
|
||||
#Limits the number of times a given augment may be applied to a given effect
|
||||
#Example entry: "glyph_amplify=5"
|
||||
augment_limits = []
|
||||
#How much an augment should cost when used on this effect or form. This overrides the default cost in the augment config.
|
||||
#Example entry: "glyph_amplify=50"
|
||||
augment_cost_overrides = []
|
||||
#Prevents the given glyph from being used in the same spell as the given glyph
|
||||
#Example entry: "glyph_burst"
|
||||
invalid_combos = []
|
||||
#Potion duration, in seconds
|
||||
# Default: 30
|
||||
# Range: > 0
|
||||
potion_time = 30
|
||||
#Extend time duration, in seconds
|
||||
# Default: 8
|
||||
# Range: > 0
|
||||
extend_time = 8
|
||||
@@ -0,0 +1,27 @@
|
||||
#General settings
|
||||
[general]
|
||||
#Is Enabled?
|
||||
enabled = true
|
||||
#Cost
|
||||
# Default: 70
|
||||
# Range: > -2147483648
|
||||
cost = 70
|
||||
#Is Starter Glyph?
|
||||
starter = false
|
||||
#The maximum number of times this glyph may appear in a single spell
|
||||
# Default: 2147483647
|
||||
# Range: > 1
|
||||
per_spell_limit = 2147483647
|
||||
#The tier of the glyph
|
||||
# Default: 2
|
||||
# Range: 1 ~ 99
|
||||
glyph_tier = 2
|
||||
#Limits the number of times a given augment may be applied to a given effect
|
||||
#Example entry: "glyph_amplify=5"
|
||||
augment_limits = []
|
||||
#How much an augment should cost when used on this effect or form. This overrides the default cost in the augment config.
|
||||
#Example entry: "glyph_amplify=50"
|
||||
augment_cost_overrides = []
|
||||
#Prevents the given glyph from being used in the same spell as the given glyph
|
||||
#Example entry: "glyph_burst"
|
||||
invalid_combos = []
|
||||
@@ -0,0 +1,34 @@
|
||||
#General settings
|
||||
[general]
|
||||
#Is Enabled?
|
||||
enabled = true
|
||||
#Cost
|
||||
# Default: 15
|
||||
# Range: > -2147483648
|
||||
cost = 15
|
||||
#Is Starter Glyph?
|
||||
starter = false
|
||||
#The maximum number of times this glyph may appear in a single spell
|
||||
# Default: 2147483647
|
||||
# Range: > 1
|
||||
per_spell_limit = 2147483647
|
||||
#The tier of the glyph
|
||||
# Default: 1
|
||||
# Range: 1 ~ 99
|
||||
glyph_tier = 1
|
||||
#Limits the number of times a given augment may be applied to a given effect
|
||||
#Example entry: "glyph_amplify=5"
|
||||
augment_limits = ["ars_nouveau:glyph_sensitive=1"]
|
||||
#How much an augment should cost when used on this effect or form. This overrides the default cost in the augment config.
|
||||
#Example entry: "glyph_amplify=50"
|
||||
augment_cost_overrides = []
|
||||
#Prevents the given glyph from being used in the same spell as the given glyph
|
||||
#Example entry: "glyph_burst"
|
||||
invalid_combos = []
|
||||
#Base knockback value
|
||||
# Default: 1.5
|
||||
# Range: 0.0 ~ 1.7976931348623157E308
|
||||
base_value = 1.5
|
||||
# Default: 1.0
|
||||
# Range: 0.0 ~ 2.147483647E9
|
||||
amplify = 1.0
|
||||
@@ -0,0 +1,41 @@
|
||||
#General settings
|
||||
[general]
|
||||
#Is Enabled?
|
||||
enabled = true
|
||||
#Cost
|
||||
# Default: 15
|
||||
# Range: > -2147483648
|
||||
cost = 15
|
||||
#Is Starter Glyph?
|
||||
starter = true
|
||||
#The maximum number of times this glyph may appear in a single spell
|
||||
# Default: 2147483647
|
||||
# Range: > 1
|
||||
per_spell_limit = 2147483647
|
||||
#The tier of the glyph
|
||||
# Default: 1
|
||||
# Range: 1 ~ 99
|
||||
glyph_tier = 1
|
||||
#Limits the number of times a given augment may be applied to a given effect
|
||||
#Example entry: "glyph_amplify=5"
|
||||
augment_limits = ["ars_nouveau:glyph_amplify=2"]
|
||||
#How much an augment should cost when used on this effect or form. This overrides the default cost in the augment config.
|
||||
#Example entry: "glyph_amplify=50"
|
||||
augment_cost_overrides = []
|
||||
#Prevents the given glyph from being used in the same spell as the given glyph
|
||||
#Example entry: "glyph_burst"
|
||||
invalid_combos = []
|
||||
# Default: 5.0
|
||||
# Range: 0.0 ~ 2.147483647E9
|
||||
damage = 5.0
|
||||
# Default: 2.0
|
||||
# Range: 0.0 ~ 2.147483647E9
|
||||
amplify = 2.0
|
||||
#Potion duration, in seconds
|
||||
# Default: 5
|
||||
# Range: > 0
|
||||
potion_time = 5
|
||||
#Extend time duration, in seconds
|
||||
# Default: 5
|
||||
# Range: > 0
|
||||
extend_time = 5
|
||||
@@ -0,0 +1,27 @@
|
||||
#General settings
|
||||
[general]
|
||||
#Is Enabled?
|
||||
enabled = true
|
||||
#Cost
|
||||
# Default: 10
|
||||
# Range: > -2147483648
|
||||
cost = 10
|
||||
#Is Starter Glyph?
|
||||
starter = false
|
||||
#The maximum number of times this glyph may appear in a single spell
|
||||
# Default: 2147483647
|
||||
# Range: > 1
|
||||
per_spell_limit = 2147483647
|
||||
#The tier of the glyph
|
||||
# Default: 1
|
||||
# Range: 1 ~ 99
|
||||
glyph_tier = 1
|
||||
#Limits the number of times a given augment may be applied to a given effect
|
||||
#Example entry: "glyph_amplify=5"
|
||||
augment_limits = []
|
||||
#How much an augment should cost when used on this effect or form. This overrides the default cost in the augment config.
|
||||
#Example entry: "glyph_amplify=50"
|
||||
augment_cost_overrides = []
|
||||
#Prevents the given glyph from being used in the same spell as the given glyph
|
||||
#Example entry: "glyph_burst"
|
||||
invalid_combos = []
|
||||
@@ -0,0 +1,34 @@
|
||||
#General settings
|
||||
[general]
|
||||
#Is Enabled?
|
||||
enabled = true
|
||||
#Cost
|
||||
# Default: 50
|
||||
# Range: > -2147483648
|
||||
cost = 50
|
||||
#Is Starter Glyph?
|
||||
starter = false
|
||||
#The maximum number of times this glyph may appear in a single spell
|
||||
# Default: 2147483647
|
||||
# Range: > 1
|
||||
per_spell_limit = 2147483647
|
||||
#The tier of the glyph
|
||||
# Default: 2
|
||||
# Range: 1 ~ 99
|
||||
glyph_tier = 2
|
||||
#Limits the number of times a given augment may be applied to a given effect
|
||||
#Example entry: "glyph_amplify=5"
|
||||
augment_limits = []
|
||||
#How much an augment should cost when used on this effect or form. This overrides the default cost in the augment config.
|
||||
#Example entry: "glyph_amplify=50"
|
||||
augment_cost_overrides = []
|
||||
#Prevents the given glyph from being used in the same spell as the given glyph
|
||||
#Example entry: "glyph_burst"
|
||||
invalid_combos = []
|
||||
#Base heal amount
|
||||
# Default: 3.0
|
||||
# Range: 0.0 ~ 1.7976931348623157E308
|
||||
base_heal = 3.0
|
||||
# Default: 3.0
|
||||
# Range: 0.0 ~ 2.147483647E9
|
||||
amplify = 3.0
|
||||
@@ -0,0 +1,35 @@
|
||||
#General settings
|
||||
[general]
|
||||
#Is Enabled?
|
||||
enabled = true
|
||||
#Cost
|
||||
# Default: 100
|
||||
# Range: > -2147483648
|
||||
cost = 100
|
||||
#Is Starter Glyph?
|
||||
starter = false
|
||||
#The maximum number of times this glyph may appear in a single spell
|
||||
# Default: 2147483647
|
||||
# Range: > 1
|
||||
per_spell_limit = 2147483647
|
||||
#The tier of the glyph
|
||||
# Default: 3
|
||||
# Range: 1 ~ 99
|
||||
glyph_tier = 3
|
||||
#Limits the number of times a given augment may be applied to a given effect
|
||||
#Example entry: "glyph_amplify=5"
|
||||
augment_limits = ["ars_nouveau:glyph_amplify=4"]
|
||||
#How much an augment should cost when used on this effect or form. This overrides the default cost in the augment config.
|
||||
#Example entry: "glyph_amplify=50"
|
||||
augment_cost_overrides = []
|
||||
#Prevents the given glyph from being used in the same spell as the given glyph
|
||||
#Example entry: "glyph_burst"
|
||||
invalid_combos = []
|
||||
#Potion duration, in seconds
|
||||
# Default: 30
|
||||
# Range: > 0
|
||||
potion_time = 30
|
||||
#Extend time duration, in seconds
|
||||
# Default: 8
|
||||
# Range: > 0
|
||||
extend_time = 8
|
||||
@@ -0,0 +1,35 @@
|
||||
#General settings
|
||||
[general]
|
||||
#Is Enabled?
|
||||
enabled = true
|
||||
#Cost
|
||||
# Default: 15
|
||||
# Range: > -2147483648
|
||||
cost = 15
|
||||
#Is Starter Glyph?
|
||||
starter = false
|
||||
#The maximum number of times this glyph may appear in a single spell
|
||||
# Default: 2147483647
|
||||
# Range: > 1
|
||||
per_spell_limit = 2147483647
|
||||
#The tier of the glyph
|
||||
# Default: 1
|
||||
# Range: 1 ~ 99
|
||||
glyph_tier = 1
|
||||
#Limits the number of times a given augment may be applied to a given effect
|
||||
#Example entry: "glyph_amplify=5"
|
||||
augment_limits = ["ars_nouveau:glyph_sensitive=1"]
|
||||
#How much an augment should cost when used on this effect or form. This overrides the default cost in the augment config.
|
||||
#Example entry: "glyph_amplify=50"
|
||||
augment_cost_overrides = []
|
||||
#Prevents the given glyph from being used in the same spell as the given glyph
|
||||
#Example entry: "glyph_burst"
|
||||
invalid_combos = []
|
||||
#Extend time duration, in seconds
|
||||
# Default: 2
|
||||
# Range: > 0
|
||||
extend_time = 2
|
||||
#Potion duration, in seconds
|
||||
# Default: 3
|
||||
# Range: > 0
|
||||
potion_time = 3
|
||||
@@ -0,0 +1,27 @@
|
||||
#General settings
|
||||
[general]
|
||||
#Is Enabled?
|
||||
enabled = true
|
||||
#Cost
|
||||
# Default: 30
|
||||
# Range: > -2147483648
|
||||
cost = 30
|
||||
#Is Starter Glyph?
|
||||
starter = false
|
||||
#The maximum number of times this glyph may appear in a single spell
|
||||
# Default: 2147483647
|
||||
# Range: > 1
|
||||
per_spell_limit = 2147483647
|
||||
#The tier of the glyph
|
||||
# Default: 2
|
||||
# Range: 1 ~ 99
|
||||
glyph_tier = 2
|
||||
#Limits the number of times a given augment may be applied to a given effect
|
||||
#Example entry: "glyph_amplify=5"
|
||||
augment_limits = ["ars_nouveau:glyph_aoe=1", "ars_nouveau:glyph_extend_time=1"]
|
||||
#How much an augment should cost when used on this effect or form. This overrides the default cost in the augment config.
|
||||
#Example entry: "glyph_amplify=50"
|
||||
augment_cost_overrides = []
|
||||
#Prevents the given glyph from being used in the same spell as the given glyph
|
||||
#Example entry: "glyph_burst"
|
||||
invalid_combos = []
|
||||
@@ -0,0 +1,35 @@
|
||||
#General settings
|
||||
[general]
|
||||
#Is Enabled?
|
||||
enabled = true
|
||||
#Cost
|
||||
# Default: 30
|
||||
# Range: > -2147483648
|
||||
cost = 30
|
||||
#Is Starter Glyph?
|
||||
starter = false
|
||||
#The maximum number of times this glyph may appear in a single spell
|
||||
# Default: 2147483647
|
||||
# Range: > 1
|
||||
per_spell_limit = 2147483647
|
||||
#The tier of the glyph
|
||||
# Default: 3
|
||||
# Range: 1 ~ 99
|
||||
glyph_tier = 3
|
||||
#Limits the number of times a given augment may be applied to a given effect
|
||||
#Example entry: "glyph_amplify=5"
|
||||
augment_limits = []
|
||||
#How much an augment should cost when used on this effect or form. This overrides the default cost in the augment config.
|
||||
#Example entry: "glyph_amplify=50"
|
||||
augment_cost_overrides = []
|
||||
#Prevents the given glyph from being used in the same spell as the given glyph
|
||||
#Example entry: "glyph_burst"
|
||||
invalid_combos = []
|
||||
#Base duration, in seconds
|
||||
# Default: 3
|
||||
# Range: > 0
|
||||
base = 3
|
||||
#Extend time duration, in seconds
|
||||
# Default: 1
|
||||
# Range: > 0
|
||||
extend_time = 1
|
||||
@@ -0,0 +1,27 @@
|
||||
#General settings
|
||||
[general]
|
||||
#Is Enabled?
|
||||
enabled = true
|
||||
#Cost
|
||||
# Default: 10
|
||||
# Range: > -2147483648
|
||||
cost = 10
|
||||
#Is Starter Glyph?
|
||||
starter = false
|
||||
#The maximum number of times this glyph may appear in a single spell
|
||||
# Default: 2147483647
|
||||
# Range: > 1
|
||||
per_spell_limit = 2147483647
|
||||
#The tier of the glyph
|
||||
# Default: 1
|
||||
# Range: 1 ~ 99
|
||||
glyph_tier = 1
|
||||
#Limits the number of times a given augment may be applied to a given effect
|
||||
#Example entry: "glyph_amplify=5"
|
||||
augment_limits = ["ars_nouveau:glyph_sensitive=1", "ars_nouveau:glyph_amplify=1", "ars_nouveau:glyph_dampen=1"]
|
||||
#How much an augment should cost when used on this effect or form. This overrides the default cost in the augment config.
|
||||
#Example entry: "glyph_amplify=50"
|
||||
augment_cost_overrides = []
|
||||
#Prevents the given glyph from being used in the same spell as the given glyph
|
||||
#Example entry: "glyph_burst"
|
||||
invalid_combos = []
|
||||
@@ -0,0 +1,35 @@
|
||||
#General settings
|
||||
[general]
|
||||
#Is Enabled?
|
||||
enabled = true
|
||||
#Cost
|
||||
# Default: 30
|
||||
# Range: > -2147483648
|
||||
cost = 30
|
||||
#Is Starter Glyph?
|
||||
starter = false
|
||||
#The maximum number of times this glyph may appear in a single spell
|
||||
# Default: 2147483647
|
||||
# Range: > 1
|
||||
per_spell_limit = 2147483647
|
||||
#The tier of the glyph
|
||||
# Default: 2
|
||||
# Range: 1 ~ 99
|
||||
glyph_tier = 2
|
||||
#Limits the number of times a given augment may be applied to a given effect
|
||||
#Example entry: "glyph_amplify=5"
|
||||
augment_limits = []
|
||||
#How much an augment should cost when used on this effect or form. This overrides the default cost in the augment config.
|
||||
#Example entry: "glyph_amplify=50"
|
||||
augment_cost_overrides = []
|
||||
#Prevents the given glyph from being used in the same spell as the given glyph
|
||||
#Example entry: "glyph_burst"
|
||||
invalid_combos = []
|
||||
#Potion duration, in seconds
|
||||
# Default: 30
|
||||
# Range: > 0
|
||||
potion_time = 30
|
||||
#Extend time duration, in seconds
|
||||
# Default: 8
|
||||
# Range: > 0
|
||||
extend_time = 8
|
||||
@@ -0,0 +1,34 @@
|
||||
#General settings
|
||||
[general]
|
||||
#Is Enabled?
|
||||
enabled = true
|
||||
#Cost
|
||||
# Default: 30
|
||||
# Range: > -2147483648
|
||||
cost = 30
|
||||
#Is Starter Glyph?
|
||||
starter = false
|
||||
#The maximum number of times this glyph may appear in a single spell
|
||||
# Default: 2147483647
|
||||
# Range: > 1
|
||||
per_spell_limit = 2147483647
|
||||
#The tier of the glyph
|
||||
# Default: 1
|
||||
# Range: 1 ~ 99
|
||||
glyph_tier = 1
|
||||
#Limits the number of times a given augment may be applied to a given effect
|
||||
#Example entry: "glyph_amplify=5"
|
||||
augment_limits = ["ars_nouveau:glyph_sensitive=1"]
|
||||
#How much an augment should cost when used on this effect or form. This overrides the default cost in the augment config.
|
||||
#Example entry: "glyph_amplify=50"
|
||||
augment_cost_overrides = []
|
||||
#Prevents the given glyph from being used in the same spell as the given glyph
|
||||
#Example entry: "glyph_burst"
|
||||
invalid_combos = []
|
||||
#Base knockup amount
|
||||
# Default: 0.8
|
||||
# Range: 0.0 ~ 1.7976931348623157E308
|
||||
knockup = 0.8
|
||||
# Default: 0.25
|
||||
# Range: 0.0 ~ 2.147483647E9
|
||||
amplify = 0.25
|
||||
@@ -0,0 +1,36 @@
|
||||
#General settings
|
||||
[general]
|
||||
#Is Enabled?
|
||||
enabled = true
|
||||
#Cost
|
||||
# Default: 25
|
||||
# Range: > -2147483648
|
||||
cost = 25
|
||||
#Is Starter Glyph?
|
||||
starter = false
|
||||
#The maximum number of times this glyph may appear in a single spell
|
||||
# Default: 2147483647
|
||||
# Range: > 1
|
||||
per_spell_limit = 2147483647
|
||||
#The tier of the glyph
|
||||
# Default: 1
|
||||
# Range: 1 ~ 99
|
||||
glyph_tier = 1
|
||||
#Limits the number of times a given augment may be applied to a given effect
|
||||
#Example entry: "glyph_amplify=5"
|
||||
augment_limits = ["ars_nouveau:glyph_sensitive=1"]
|
||||
#How much an augment should cost when used on this effect or form. This overrides the default cost in the augment config.
|
||||
#Example entry: "glyph_amplify=50"
|
||||
augment_cost_overrides = []
|
||||
#Prevents the given glyph from being used in the same spell as the given glyph
|
||||
#Example entry: "glyph_burst"
|
||||
invalid_combos = []
|
||||
#If true, will not launch the caster if they are not on the ground.
|
||||
force_ground = false
|
||||
#Base knockup amount
|
||||
# Default: 1.5
|
||||
# Range: 0.0 ~ 1.7976931348623157E308
|
||||
knock_up = 1.5
|
||||
# Default: 1.0
|
||||
# Range: 0.0 ~ 2.147483647E9
|
||||
amplify = 1.0
|
||||
@@ -0,0 +1,35 @@
|
||||
#General settings
|
||||
[general]
|
||||
#Is Enabled?
|
||||
enabled = true
|
||||
#Cost
|
||||
# Default: 25
|
||||
# Range: > -2147483648
|
||||
cost = 25
|
||||
#Is Starter Glyph?
|
||||
starter = false
|
||||
#The maximum number of times this glyph may appear in a single spell
|
||||
# Default: 2147483647
|
||||
# Range: > 1
|
||||
per_spell_limit = 2147483647
|
||||
#The tier of the glyph
|
||||
# Default: 1
|
||||
# Range: 1 ~ 99
|
||||
glyph_tier = 1
|
||||
#Limits the number of times a given augment may be applied to a given effect
|
||||
#Example entry: "glyph_amplify=5"
|
||||
augment_limits = ["ars_nouveau:glyph_sensitive=1", "ars_nouveau:glyph_amplify=1"]
|
||||
#How much an augment should cost when used on this effect or form. This overrides the default cost in the augment config.
|
||||
#Example entry: "glyph_amplify=50"
|
||||
augment_cost_overrides = []
|
||||
#Prevents the given glyph from being used in the same spell as the given glyph
|
||||
#Example entry: "glyph_burst"
|
||||
invalid_combos = []
|
||||
#Potion duration, in seconds
|
||||
# Default: 30
|
||||
# Range: > 0
|
||||
potion_time = 30
|
||||
#Extend time duration, in seconds
|
||||
# Default: 8
|
||||
# Range: > 0
|
||||
extend_time = 8
|
||||
@@ -0,0 +1,37 @@
|
||||
#General settings
|
||||
[general]
|
||||
#Is Enabled?
|
||||
enabled = true
|
||||
#Cost
|
||||
# Default: 100
|
||||
# Range: > -2147483648
|
||||
cost = 100
|
||||
#Is Starter Glyph?
|
||||
starter = false
|
||||
#The maximum number of times this glyph may appear in a single spell
|
||||
# Default: 2147483647
|
||||
# Range: > 1
|
||||
per_spell_limit = 2147483647
|
||||
#The tier of the glyph
|
||||
# Default: 3
|
||||
# Range: 1 ~ 99
|
||||
glyph_tier = 3
|
||||
#Limits the number of times a given augment may be applied to a given effect
|
||||
#Example entry: "glyph_amplify=5"
|
||||
augment_limits = ["ars_nouveau:glyph_amplify=2"]
|
||||
#How much an augment should cost when used on this effect or form. This overrides the default cost in the augment config.
|
||||
#Example entry: "glyph_amplify=50"
|
||||
augment_cost_overrides = []
|
||||
#Prevents the given glyph from being used in the same spell as the given glyph
|
||||
#Example entry: "glyph_burst"
|
||||
invalid_combos = []
|
||||
# Default: 5.0
|
||||
# Range: 0.0 ~ 2.147483647E9
|
||||
damage = 5.0
|
||||
# Default: 3.0
|
||||
# Range: 0.0 ~ 2.147483647E9
|
||||
amplify = 3.0
|
||||
#Bonus damage for wet entities
|
||||
# Default: 2.0
|
||||
# Range: 0.0 ~ 1.7976931348623157E308
|
||||
wet_bonus = 2.0
|
||||
@@ -0,0 +1,27 @@
|
||||
#General settings
|
||||
[general]
|
||||
#Is Enabled?
|
||||
enabled = true
|
||||
#Cost
|
||||
# Default: 500
|
||||
# Range: > -2147483648
|
||||
cost = 500
|
||||
#Is Starter Glyph?
|
||||
starter = false
|
||||
#The maximum number of times this glyph may appear in a single spell
|
||||
# Default: 1
|
||||
# Range: 1 ~ 1
|
||||
per_spell_limit = 1
|
||||
#The tier of the glyph
|
||||
# Default: 3
|
||||
# Range: 1 ~ 99
|
||||
glyph_tier = 3
|
||||
#Limits the number of times a given augment may be applied to a given effect
|
||||
#Example entry: "glyph_amplify=5"
|
||||
augment_limits = ["ars_nouveau:glyph_sensitive=1"]
|
||||
#How much an augment should cost when used on this effect or form. This overrides the default cost in the augment config.
|
||||
#Example entry: "glyph_amplify=50"
|
||||
augment_cost_overrides = []
|
||||
#Prevents the given glyph from being used in the same spell as the given glyph
|
||||
#Example entry: "glyph_burst"
|
||||
invalid_combos = []
|
||||
@@ -0,0 +1,27 @@
|
||||
#General settings
|
||||
[general]
|
||||
#Is Enabled?
|
||||
enabled = true
|
||||
#Cost
|
||||
# Default: 25
|
||||
# Range: > -2147483648
|
||||
cost = 25
|
||||
#Is Starter Glyph?
|
||||
starter = false
|
||||
#The maximum number of times this glyph may appear in a single spell
|
||||
# Default: 2147483647
|
||||
# Range: > 1
|
||||
per_spell_limit = 2147483647
|
||||
#The tier of the glyph
|
||||
# Default: 2
|
||||
# Range: 1 ~ 99
|
||||
glyph_tier = 2
|
||||
#Limits the number of times a given augment may be applied to a given effect
|
||||
#Example entry: "glyph_amplify=5"
|
||||
augment_limits = []
|
||||
#How much an augment should cost when used on this effect or form. This overrides the default cost in the augment config.
|
||||
#Example entry: "glyph_amplify=50"
|
||||
augment_cost_overrides = []
|
||||
#Prevents the given glyph from being used in the same spell as the given glyph
|
||||
#Example entry: "glyph_burst"
|
||||
invalid_combos = []
|
||||
@@ -0,0 +1,27 @@
|
||||
#General settings
|
||||
[general]
|
||||
#Is Enabled?
|
||||
enabled = true
|
||||
#Cost
|
||||
# Default: 50
|
||||
# Range: > -2147483648
|
||||
cost = 50
|
||||
#Is Starter Glyph?
|
||||
starter = false
|
||||
#The maximum number of times this glyph may appear in a single spell
|
||||
# Default: 2147483647
|
||||
# Range: > 1
|
||||
per_spell_limit = 2147483647
|
||||
#The tier of the glyph
|
||||
# Default: 3
|
||||
# Range: 1 ~ 99
|
||||
glyph_tier = 3
|
||||
#Limits the number of times a given augment may be applied to a given effect
|
||||
#Example entry: "glyph_amplify=5"
|
||||
augment_limits = []
|
||||
#How much an augment should cost when used on this effect or form. This overrides the default cost in the augment config.
|
||||
#Example entry: "glyph_amplify=50"
|
||||
augment_cost_overrides = []
|
||||
#Prevents the given glyph from being used in the same spell as the given glyph
|
||||
#Example entry: "glyph_burst"
|
||||
invalid_combos = []
|
||||
@@ -0,0 +1,24 @@
|
||||
#General settings
|
||||
[general]
|
||||
#Is Enabled?
|
||||
enabled = true
|
||||
#Cost
|
||||
# Default: 5
|
||||
# Range: > -2147483648
|
||||
cost = 5
|
||||
#Is Starter Glyph?
|
||||
starter = false
|
||||
#The maximum number of times this glyph may appear in a single spell
|
||||
# Default: 2147483647
|
||||
# Range: > 1
|
||||
per_spell_limit = 2147483647
|
||||
#The tier of the glyph
|
||||
# Default: 1
|
||||
# Range: 1 ~ 99
|
||||
glyph_tier = 1
|
||||
#Limits the number of times a given augment may be applied to a given effect
|
||||
#Example entry: "glyph_amplify=5"
|
||||
augment_limits = ["ars_nouveau:glyph_dampen=1"]
|
||||
#How much an augment should cost when used on this effect or form. This overrides the default cost in the augment config.
|
||||
#Example entry: "glyph_amplify=50"
|
||||
augment_cost_overrides = []
|
||||
@@ -0,0 +1,27 @@
|
||||
#General settings
|
||||
[general]
|
||||
#Is Enabled?
|
||||
enabled = true
|
||||
#Cost
|
||||
# Default: 5
|
||||
# Range: > -2147483648
|
||||
cost = 5
|
||||
#Is Starter Glyph?
|
||||
starter = false
|
||||
#The maximum number of times this glyph may appear in a single spell
|
||||
# Default: 2147483647
|
||||
# Range: > 1
|
||||
per_spell_limit = 2147483647
|
||||
#The tier of the glyph
|
||||
# Default: 1
|
||||
# Range: 1 ~ 99
|
||||
glyph_tier = 1
|
||||
#Limits the number of times a given augment may be applied to a given effect
|
||||
#Example entry: "glyph_amplify=5"
|
||||
augment_limits = ["ars_nouveau:glyph_amplify=1"]
|
||||
#How much an augment should cost when used on this effect or form. This overrides the default cost in the augment config.
|
||||
#Example entry: "glyph_amplify=50"
|
||||
augment_cost_overrides = []
|
||||
#Prevents the given glyph from being used in the same spell as the given glyph
|
||||
#Example entry: "glyph_burst"
|
||||
invalid_combos = []
|
||||
@@ -0,0 +1,27 @@
|
||||
#General settings
|
||||
[general]
|
||||
#Is Enabled?
|
||||
enabled = true
|
||||
#Cost
|
||||
# Default: 10
|
||||
# Range: > -2147483648
|
||||
cost = 10
|
||||
#Is Starter Glyph?
|
||||
starter = false
|
||||
#The maximum number of times this glyph may appear in a single spell
|
||||
# Default: 2147483647
|
||||
# Range: > 1
|
||||
per_spell_limit = 2147483647
|
||||
#The tier of the glyph
|
||||
# Default: 1
|
||||
# Range: 1 ~ 99
|
||||
glyph_tier = 1
|
||||
#Limits the number of times a given augment may be applied to a given effect
|
||||
#Example entry: "glyph_amplify=5"
|
||||
augment_limits = []
|
||||
#How much an augment should cost when used on this effect or form. This overrides the default cost in the augment config.
|
||||
#Example entry: "glyph_amplify=50"
|
||||
augment_cost_overrides = []
|
||||
#Prevents the given glyph from being used in the same spell as the given glyph
|
||||
#Example entry: "glyph_burst"
|
||||
invalid_combos = []
|
||||
@@ -0,0 +1,18 @@
|
||||
#General settings
|
||||
[general]
|
||||
#Is Enabled?
|
||||
enabled = true
|
||||
#Cost
|
||||
# Default: 40
|
||||
# Range: > -2147483648
|
||||
cost = 40
|
||||
#Is Starter Glyph?
|
||||
starter = false
|
||||
#The maximum number of times this glyph may appear in a single spell
|
||||
# Default: 2147483647
|
||||
# Range: > 1
|
||||
per_spell_limit = 2147483647
|
||||
#The tier of the glyph
|
||||
# Default: 2
|
||||
# Range: 1 ~ 99
|
||||
glyph_tier = 2
|
||||
@@ -0,0 +1,27 @@
|
||||
#General settings
|
||||
[general]
|
||||
#Is Enabled?
|
||||
enabled = true
|
||||
#Cost
|
||||
# Default: 10
|
||||
# Range: > -2147483648
|
||||
cost = 10
|
||||
#Is Starter Glyph?
|
||||
starter = false
|
||||
#The maximum number of times this glyph may appear in a single spell
|
||||
# Default: 2147483647
|
||||
# Range: > 1
|
||||
per_spell_limit = 2147483647
|
||||
#The tier of the glyph
|
||||
# Default: 1
|
||||
# Range: 1 ~ 99
|
||||
glyph_tier = 1
|
||||
#Limits the number of times a given augment may be applied to a given effect
|
||||
#Example entry: "glyph_amplify=5"
|
||||
augment_limits = ["ars_nouveau:glyph_sensitive=2"]
|
||||
#How much an augment should cost when used on this effect or form. This overrides the default cost in the augment config.
|
||||
#Example entry: "glyph_amplify=50"
|
||||
augment_cost_overrides = []
|
||||
#Prevents the given glyph from being used in the same spell as the given glyph
|
||||
#Example entry: "glyph_burst"
|
||||
invalid_combos = []
|
||||
@@ -0,0 +1,27 @@
|
||||
#General settings
|
||||
[general]
|
||||
#Is Enabled?
|
||||
enabled = true
|
||||
#Cost
|
||||
# Default: 0
|
||||
# Range: > -2147483648
|
||||
cost = 0
|
||||
#Is Starter Glyph?
|
||||
starter = false
|
||||
#The maximum number of times this glyph may appear in a single spell
|
||||
# Default: 2147483647
|
||||
# Range: > 1
|
||||
per_spell_limit = 2147483647
|
||||
#The tier of the glyph
|
||||
# Default: 1
|
||||
# Range: 1 ~ 99
|
||||
glyph_tier = 1
|
||||
#Limits the number of times a given augment may be applied to a given effect
|
||||
#Example entry: "glyph_amplify=5"
|
||||
augment_limits = []
|
||||
#How much an augment should cost when used on this effect or form. This overrides the default cost in the augment config.
|
||||
#Example entry: "glyph_amplify=50"
|
||||
augment_cost_overrides = []
|
||||
#Prevents the given glyph from being used in the same spell as the given glyph
|
||||
#Example entry: "glyph_burst"
|
||||
invalid_combos = []
|
||||
@@ -0,0 +1,28 @@
|
||||
#General settings
|
||||
[general]
|
||||
#Is Enabled?
|
||||
enabled = true
|
||||
#Cost
|
||||
# Default: 10
|
||||
# Range: > -2147483648
|
||||
cost = 10
|
||||
#Is Starter Glyph?
|
||||
starter = true
|
||||
#The maximum number of times this glyph may appear in a single spell
|
||||
# Default: 2147483647
|
||||
# Range: > 1
|
||||
per_spell_limit = 2147483647
|
||||
#The tier of the glyph
|
||||
# Default: 1
|
||||
# Range: 1 ~ 99
|
||||
glyph_tier = 1
|
||||
#Limits the number of times a given augment may be applied to a given effect
|
||||
#Example entry: "glyph_amplify=5"
|
||||
augment_limits = []
|
||||
#How much an augment should cost when used on this effect or form. This overrides the default cost in the augment config.
|
||||
#Example entry: "glyph_amplify=50"
|
||||
augment_cost_overrides = []
|
||||
#Max lifespan of the projectile, in seconds.
|
||||
# Default: 60
|
||||
# Range: > 0
|
||||
max_lifespan = 60
|
||||
@@ -0,0 +1,34 @@
|
||||
#General settings
|
||||
[general]
|
||||
#Is Enabled?
|
||||
enabled = true
|
||||
#Cost
|
||||
# Default: 15
|
||||
# Range: > -2147483648
|
||||
cost = 15
|
||||
#Is Starter Glyph?
|
||||
starter = false
|
||||
#The maximum number of times this glyph may appear in a single spell
|
||||
# Default: 2147483647
|
||||
# Range: > 1
|
||||
per_spell_limit = 2147483647
|
||||
#The tier of the glyph
|
||||
# Default: 1
|
||||
# Range: 1 ~ 99
|
||||
glyph_tier = 1
|
||||
#Limits the number of times a given augment may be applied to a given effect
|
||||
#Example entry: "glyph_amplify=5"
|
||||
augment_limits = ["ars_nouveau:glyph_sensitive=1"]
|
||||
#How much an augment should cost when used on this effect or form. This overrides the default cost in the augment config.
|
||||
#Example entry: "glyph_amplify=50"
|
||||
augment_cost_overrides = []
|
||||
#Prevents the given glyph from being used in the same spell as the given glyph
|
||||
#Example entry: "glyph_burst"
|
||||
invalid_combos = []
|
||||
#Base movement velocity
|
||||
# Default: 1.0
|
||||
# Range: 0.0 ~ 1.7976931348623157E308
|
||||
base_value = 1.0
|
||||
# Default: 0.5
|
||||
# Range: 0.0 ~ 2.147483647E9
|
||||
amplify = 0.5
|
||||
@@ -0,0 +1,18 @@
|
||||
#General settings
|
||||
[general]
|
||||
#Is Enabled?
|
||||
enabled = true
|
||||
#Cost
|
||||
# Default: 0
|
||||
# Range: > -2147483648
|
||||
cost = 0
|
||||
#Is Starter Glyph?
|
||||
starter = false
|
||||
#The maximum number of times this glyph may appear in a single spell
|
||||
# Default: 2147483647
|
||||
# Range: > 1
|
||||
per_spell_limit = 2147483647
|
||||
#The tier of the glyph
|
||||
# Default: 1
|
||||
# Range: 1 ~ 99
|
||||
glyph_tier = 1
|
||||
@@ -0,0 +1,35 @@
|
||||
#General settings
|
||||
[general]
|
||||
#Is Enabled?
|
||||
enabled = true
|
||||
#Cost
|
||||
# Default: 0
|
||||
# Range: > -2147483648
|
||||
cost = 0
|
||||
#Is Starter Glyph?
|
||||
starter = false
|
||||
#The maximum number of times this glyph may appear in a single spell
|
||||
# Default: 2147483647
|
||||
# Range: > 1
|
||||
per_spell_limit = 2147483647
|
||||
#The tier of the glyph
|
||||
# Default: 1
|
||||
# Range: 1 ~ 99
|
||||
glyph_tier = 1
|
||||
#Limits the number of times a given augment may be applied to a given effect
|
||||
#Example entry: "glyph_amplify=5"
|
||||
augment_limits = ["ars_nouveau:glyph_sensitive=1"]
|
||||
#How much an augment should cost when used on this effect or form. This overrides the default cost in the augment config.
|
||||
#Example entry: "glyph_amplify=50"
|
||||
augment_cost_overrides = []
|
||||
#Prevents the given glyph from being used in the same spell as the given glyph
|
||||
#Example entry: "glyph_burst"
|
||||
invalid_combos = []
|
||||
#Base time in ticks
|
||||
# Default: 5
|
||||
# Range: > 0
|
||||
base_duration = 5
|
||||
#Extend time bonus, in ticks
|
||||
# Default: 10
|
||||
# Range: > 0
|
||||
extend_time = 10
|
||||
@@ -0,0 +1,27 @@
|
||||
#General settings
|
||||
[general]
|
||||
#Is Enabled?
|
||||
enabled = true
|
||||
#Cost
|
||||
# Default: 10
|
||||
# Range: > -2147483648
|
||||
cost = 10
|
||||
#Is Starter Glyph?
|
||||
starter = false
|
||||
#The maximum number of times this glyph may appear in a single spell
|
||||
# Default: 2147483647
|
||||
# Range: > 1
|
||||
per_spell_limit = 2147483647
|
||||
#The tier of the glyph
|
||||
# Default: 1
|
||||
# Range: 1 ~ 99
|
||||
glyph_tier = 1
|
||||
#Limits the number of times a given augment may be applied to a given effect
|
||||
#Example entry: "glyph_amplify=5"
|
||||
augment_limits = ["ars_nouveau:glyph_sensitive=1", "ars_nouveau:glyph_randomize=1"]
|
||||
#How much an augment should cost when used on this effect or form. This overrides the default cost in the augment config.
|
||||
#Example entry: "glyph_amplify=50"
|
||||
augment_cost_overrides = []
|
||||
#Prevents the given glyph from being used in the same spell as the given glyph
|
||||
#Example entry: "glyph_burst"
|
||||
invalid_combos = []
|
||||
@@ -0,0 +1,27 @@
|
||||
#General settings
|
||||
[general]
|
||||
#Is Enabled?
|
||||
enabled = true
|
||||
#Cost
|
||||
# Default: 30
|
||||
# Range: > -2147483648
|
||||
cost = 30
|
||||
#Is Starter Glyph?
|
||||
starter = false
|
||||
#The maximum number of times this glyph may appear in a single spell
|
||||
# Default: 2147483647
|
||||
# Range: > 1
|
||||
per_spell_limit = 2147483647
|
||||
#The tier of the glyph
|
||||
# Default: 1
|
||||
# Range: 1 ~ 99
|
||||
glyph_tier = 1
|
||||
#Limits the number of times a given augment may be applied to a given effect
|
||||
#Example entry: "glyph_amplify=5"
|
||||
augment_limits = ["ars_nouveau:glyph_sensitive=1"]
|
||||
#How much an augment should cost when used on this effect or form. This overrides the default cost in the augment config.
|
||||
#Example entry: "glyph_amplify=50"
|
||||
augment_cost_overrides = []
|
||||
#Prevents the given glyph from being used in the same spell as the given glyph
|
||||
#Example entry: "glyph_burst"
|
||||
invalid_combos = []
|
||||
@@ -0,0 +1,24 @@
|
||||
#General settings
|
||||
[general]
|
||||
#Is Enabled?
|
||||
enabled = true
|
||||
#Cost
|
||||
# Default: 10
|
||||
# Range: > -2147483648
|
||||
cost = 10
|
||||
#Is Starter Glyph?
|
||||
starter = true
|
||||
#The maximum number of times this glyph may appear in a single spell
|
||||
# Default: 2147483647
|
||||
# Range: > 1
|
||||
per_spell_limit = 2147483647
|
||||
#The tier of the glyph
|
||||
# Default: 1
|
||||
# Range: 1 ~ 99
|
||||
glyph_tier = 1
|
||||
#Limits the number of times a given augment may be applied to a given effect
|
||||
#Example entry: "glyph_amplify=5"
|
||||
augment_limits = []
|
||||
#How much an augment should cost when used on this effect or form. This overrides the default cost in the augment config.
|
||||
#Example entry: "glyph_amplify=50"
|
||||
augment_cost_overrides = []
|
||||
@@ -0,0 +1,35 @@
|
||||
#General settings
|
||||
[general]
|
||||
#Is Enabled?
|
||||
enabled = true
|
||||
#Cost
|
||||
# Default: 50
|
||||
# Range: > -2147483648
|
||||
cost = 50
|
||||
#Is Starter Glyph?
|
||||
starter = false
|
||||
#The maximum number of times this glyph may appear in a single spell
|
||||
# Default: 2147483647
|
||||
# Range: > 1
|
||||
per_spell_limit = 2147483647
|
||||
#The tier of the glyph
|
||||
# Default: 2
|
||||
# Range: 1 ~ 99
|
||||
glyph_tier = 2
|
||||
#Limits the number of times a given augment may be applied to a given effect
|
||||
#Example entry: "glyph_amplify=5"
|
||||
augment_limits = []
|
||||
#How much an augment should cost when used on this effect or form. This overrides the default cost in the augment config.
|
||||
#Example entry: "glyph_amplify=50"
|
||||
augment_cost_overrides = []
|
||||
#Prevents the given glyph from being used in the same spell as the given glyph
|
||||
#Example entry: "glyph_burst"
|
||||
invalid_combos = []
|
||||
#Potion duration, in seconds
|
||||
# Default: 60
|
||||
# Range: > 0
|
||||
potion_time = 60
|
||||
#Extend time duration, in seconds
|
||||
# Default: 15
|
||||
# Range: > 0
|
||||
extend_time = 15
|
||||
@@ -0,0 +1,18 @@
|
||||
#General settings
|
||||
[general]
|
||||
#Is Enabled?
|
||||
enabled = true
|
||||
#Cost
|
||||
# Default: 10
|
||||
# Range: > -2147483648
|
||||
cost = 10
|
||||
#Is Starter Glyph?
|
||||
starter = false
|
||||
#The maximum number of times this glyph may appear in a single spell
|
||||
# Default: 2147483647
|
||||
# Range: > 1
|
||||
per_spell_limit = 2147483647
|
||||
#The tier of the glyph
|
||||
# Default: 1
|
||||
# Range: 1 ~ 99
|
||||
glyph_tier = 1
|
||||
@@ -0,0 +1,35 @@
|
||||
#General settings
|
||||
[general]
|
||||
#Is Enabled?
|
||||
enabled = true
|
||||
#Cost
|
||||
# Default: 30
|
||||
# Range: > -2147483648
|
||||
cost = 30
|
||||
#Is Starter Glyph?
|
||||
starter = false
|
||||
#The maximum number of times this glyph may appear in a single spell
|
||||
# Default: 2147483647
|
||||
# Range: > 1
|
||||
per_spell_limit = 2147483647
|
||||
#The tier of the glyph
|
||||
# Default: 2
|
||||
# Range: 1 ~ 99
|
||||
glyph_tier = 2
|
||||
#Limits the number of times a given augment may be applied to a given effect
|
||||
#Example entry: "glyph_amplify=5"
|
||||
augment_limits = []
|
||||
#How much an augment should cost when used on this effect or form. This overrides the default cost in the augment config.
|
||||
#Example entry: "glyph_amplify=50"
|
||||
augment_cost_overrides = []
|
||||
#Prevents the given glyph from being used in the same spell as the given glyph
|
||||
#Example entry: "glyph_burst"
|
||||
invalid_combos = []
|
||||
#Potion duration, in seconds
|
||||
# Default: 30
|
||||
# Range: > 0
|
||||
potion_time = 30
|
||||
#Extend time duration, in seconds
|
||||
# Default: 8
|
||||
# Range: > 0
|
||||
extend_time = 8
|
||||
@@ -0,0 +1,27 @@
|
||||
#General settings
|
||||
[general]
|
||||
#Is Enabled?
|
||||
enabled = true
|
||||
#Cost
|
||||
# Default: 100
|
||||
# Range: > -2147483648
|
||||
cost = 100
|
||||
#Is Starter Glyph?
|
||||
starter = false
|
||||
#The maximum number of times this glyph may appear in a single spell
|
||||
# Default: 2147483647
|
||||
# Range: > 1
|
||||
per_spell_limit = 2147483647
|
||||
#The tier of the glyph
|
||||
# Default: 2
|
||||
# Range: 1 ~ 99
|
||||
glyph_tier = 2
|
||||
#Limits the number of times a given augment may be applied to a given effect
|
||||
#Example entry: "glyph_amplify=5"
|
||||
augment_limits = ["ars_nouveau:glyph_sensitive=1"]
|
||||
#How much an augment should cost when used on this effect or form. This overrides the default cost in the augment config.
|
||||
#Example entry: "glyph_amplify=50"
|
||||
augment_cost_overrides = []
|
||||
#Prevents the given glyph from being used in the same spell as the given glyph
|
||||
#Example entry: "glyph_burst"
|
||||
invalid_combos = []
|
||||
@@ -0,0 +1,35 @@
|
||||
#General settings
|
||||
[general]
|
||||
#Is Enabled?
|
||||
enabled = true
|
||||
#Cost
|
||||
# Default: 100
|
||||
# Range: > -2147483648
|
||||
cost = 100
|
||||
#Is Starter Glyph?
|
||||
starter = false
|
||||
#The maximum number of times this glyph may appear in a single spell
|
||||
# Default: 2147483647
|
||||
# Range: > 1
|
||||
per_spell_limit = 2147483647
|
||||
#The tier of the glyph
|
||||
# Default: 1
|
||||
# Range: 1 ~ 99
|
||||
glyph_tier = 1
|
||||
#Limits the number of times a given augment may be applied to a given effect
|
||||
#Example entry: "glyph_amplify=5"
|
||||
augment_limits = []
|
||||
#How much an augment should cost when used on this effect or form. This overrides the default cost in the augment config.
|
||||
#Example entry: "glyph_amplify=50"
|
||||
augment_cost_overrides = []
|
||||
#Prevents the given glyph from being used in the same spell as the given glyph
|
||||
#Example entry: "glyph_burst"
|
||||
invalid_combos = []
|
||||
#Potion duration, in seconds
|
||||
# Default: 8
|
||||
# Range: > 0
|
||||
potion_time = 8
|
||||
#Extend time duration, in seconds
|
||||
# Default: 1
|
||||
# Range: > 0
|
||||
extend_time = 1
|
||||
@@ -0,0 +1,18 @@
|
||||
#General settings
|
||||
[general]
|
||||
#Is Enabled?
|
||||
enabled = true
|
||||
#Cost
|
||||
# Default: 20
|
||||
# Range: > -2147483648
|
||||
cost = 20
|
||||
#Is Starter Glyph?
|
||||
starter = false
|
||||
#The maximum number of times this glyph may appear in a single spell
|
||||
# Default: 2147483647
|
||||
# Range: > 1
|
||||
per_spell_limit = 2147483647
|
||||
#The tier of the glyph
|
||||
# Default: 3
|
||||
# Range: 1 ~ 99
|
||||
glyph_tier = 3
|
||||
@@ -0,0 +1,35 @@
|
||||
#General settings
|
||||
[general]
|
||||
#Is Enabled?
|
||||
enabled = true
|
||||
#Cost
|
||||
# Default: 200
|
||||
# Range: > -2147483648
|
||||
cost = 200
|
||||
#Is Starter Glyph?
|
||||
starter = false
|
||||
#The maximum number of times this glyph may appear in a single spell
|
||||
# Default: 2147483647
|
||||
# Range: > 1
|
||||
per_spell_limit = 2147483647
|
||||
#The tier of the glyph
|
||||
# Default: 3
|
||||
# Range: 1 ~ 99
|
||||
glyph_tier = 3
|
||||
#Limits the number of times a given augment may be applied to a given effect
|
||||
#Example entry: "glyph_amplify=5"
|
||||
augment_limits = []
|
||||
#How much an augment should cost when used on this effect or form. This overrides the default cost in the augment config.
|
||||
#Example entry: "glyph_amplify=50"
|
||||
augment_cost_overrides = []
|
||||
#Prevents the given glyph from being used in the same spell as the given glyph
|
||||
#Example entry: "glyph_burst"
|
||||
invalid_combos = []
|
||||
#Extend time duration, in seconds
|
||||
# Default: 15
|
||||
# Range: > 0
|
||||
extend_time = 15
|
||||
#Base duration in seconds
|
||||
# Default: 30
|
||||
# Range: > 0
|
||||
duration = 30
|
||||
@@ -0,0 +1,35 @@
|
||||
#General settings
|
||||
[general]
|
||||
#Is Enabled?
|
||||
enabled = true
|
||||
#Cost
|
||||
# Default: 100
|
||||
# Range: > -2147483648
|
||||
cost = 100
|
||||
#Is Starter Glyph?
|
||||
starter = false
|
||||
#The maximum number of times this glyph may appear in a single spell
|
||||
# Default: 2147483647
|
||||
# Range: > 1
|
||||
per_spell_limit = 2147483647
|
||||
#The tier of the glyph
|
||||
# Default: 1
|
||||
# Range: 1 ~ 99
|
||||
glyph_tier = 1
|
||||
#Limits the number of times a given augment may be applied to a given effect
|
||||
#Example entry: "glyph_amplify=5"
|
||||
augment_limits = []
|
||||
#How much an augment should cost when used on this effect or form. This overrides the default cost in the augment config.
|
||||
#Example entry: "glyph_amplify=50"
|
||||
augment_cost_overrides = []
|
||||
#Prevents the given glyph from being used in the same spell as the given glyph
|
||||
#Example entry: "glyph_burst"
|
||||
invalid_combos = []
|
||||
#Extend time duration, in seconds
|
||||
# Default: 120
|
||||
# Range: > 0
|
||||
extend_time = 120
|
||||
#Base duration in seconds
|
||||
# Default: 300
|
||||
# Range: > 0
|
||||
duration = 300
|
||||
@@ -0,0 +1,35 @@
|
||||
#General settings
|
||||
[general]
|
||||
#Is Enabled?
|
||||
enabled = true
|
||||
#Cost
|
||||
# Default: 150
|
||||
# Range: > -2147483648
|
||||
cost = 150
|
||||
#Is Starter Glyph?
|
||||
starter = false
|
||||
#The maximum number of times this glyph may appear in a single spell
|
||||
# Default: 2147483647
|
||||
# Range: > 1
|
||||
per_spell_limit = 2147483647
|
||||
#The tier of the glyph
|
||||
# Default: 3
|
||||
# Range: 1 ~ 99
|
||||
glyph_tier = 3
|
||||
#Limits the number of times a given augment may be applied to a given effect
|
||||
#Example entry: "glyph_amplify=5"
|
||||
augment_limits = []
|
||||
#How much an augment should cost when used on this effect or form. This overrides the default cost in the augment config.
|
||||
#Example entry: "glyph_amplify=50"
|
||||
augment_cost_overrides = []
|
||||
#Prevents the given glyph from being used in the same spell as the given glyph
|
||||
#Example entry: "glyph_burst"
|
||||
invalid_combos = []
|
||||
#Base duration in seconds
|
||||
# Default: 15
|
||||
# Range: > 0
|
||||
duration = 15
|
||||
#Extend time duration, in seconds
|
||||
# Default: 10
|
||||
# Range: > 0
|
||||
extend_time = 10
|
||||
@@ -0,0 +1,35 @@
|
||||
#General settings
|
||||
[general]
|
||||
#Is Enabled?
|
||||
enabled = true
|
||||
#Cost
|
||||
# Default: 150
|
||||
# Range: > -2147483648
|
||||
cost = 150
|
||||
#Is Starter Glyph?
|
||||
starter = false
|
||||
#The maximum number of times this glyph may appear in a single spell
|
||||
# Default: 2147483647
|
||||
# Range: > 1
|
||||
per_spell_limit = 2147483647
|
||||
#The tier of the glyph
|
||||
# Default: 3
|
||||
# Range: 1 ~ 99
|
||||
glyph_tier = 3
|
||||
#Limits the number of times a given augment may be applied to a given effect
|
||||
#Example entry: "glyph_amplify=5"
|
||||
augment_limits = []
|
||||
#How much an augment should cost when used on this effect or form. This overrides the default cost in the augment config.
|
||||
#Example entry: "glyph_amplify=50"
|
||||
augment_cost_overrides = []
|
||||
#Prevents the given glyph from being used in the same spell as the given glyph
|
||||
#Example entry: "glyph_burst"
|
||||
invalid_combos = []
|
||||
#Base duration in seconds
|
||||
# Default: 15
|
||||
# Range: > 0
|
||||
duration = 15
|
||||
#Extend time duration, in seconds
|
||||
# Default: 10
|
||||
# Range: > 0
|
||||
extend_time = 10
|
||||
@@ -0,0 +1,35 @@
|
||||
#General settings
|
||||
[general]
|
||||
#Is Enabled?
|
||||
enabled = true
|
||||
#Cost
|
||||
# Default: 100
|
||||
# Range: > -2147483648
|
||||
cost = 100
|
||||
#Is Starter Glyph?
|
||||
starter = false
|
||||
#The maximum number of times this glyph may appear in a single spell
|
||||
# Default: 2147483647
|
||||
# Range: > 1
|
||||
per_spell_limit = 2147483647
|
||||
#The tier of the glyph
|
||||
# Default: 1
|
||||
# Range: 1 ~ 99
|
||||
glyph_tier = 1
|
||||
#Limits the number of times a given augment may be applied to a given effect
|
||||
#Example entry: "glyph_amplify=5"
|
||||
augment_limits = []
|
||||
#How much an augment should cost when used on this effect or form. This overrides the default cost in the augment config.
|
||||
#Example entry: "glyph_amplify=50"
|
||||
augment_cost_overrides = []
|
||||
#Prevents the given glyph from being used in the same spell as the given glyph
|
||||
#Example entry: "glyph_burst"
|
||||
invalid_combos = []
|
||||
#Base duration in seconds
|
||||
# Default: 60
|
||||
# Range: > 0
|
||||
duration = 60
|
||||
#Extend time duration, in seconds
|
||||
# Default: 60
|
||||
# Range: > 0
|
||||
extend_time = 60
|
||||
@@ -0,0 +1,27 @@
|
||||
#General settings
|
||||
[general]
|
||||
#Is Enabled?
|
||||
enabled = true
|
||||
#Cost
|
||||
# Default: 10
|
||||
# Range: > -2147483648
|
||||
cost = 10
|
||||
#Is Starter Glyph?
|
||||
starter = false
|
||||
#The maximum number of times this glyph may appear in a single spell
|
||||
# Default: 2147483647
|
||||
# Range: > 1
|
||||
per_spell_limit = 2147483647
|
||||
#The tier of the glyph
|
||||
# Default: 1
|
||||
# Range: 1 ~ 99
|
||||
glyph_tier = 1
|
||||
#Limits the number of times a given augment may be applied to a given effect
|
||||
#Example entry: "glyph_amplify=5"
|
||||
augment_limits = []
|
||||
#How much an augment should cost when used on this effect or form. This overrides the default cost in the augment config.
|
||||
#Example entry: "glyph_amplify=50"
|
||||
augment_cost_overrides = []
|
||||
#Prevents the given glyph from being used in the same spell as the given glyph
|
||||
#Example entry: "glyph_burst"
|
||||
invalid_combos = []
|
||||
@@ -0,0 +1,24 @@
|
||||
#General settings
|
||||
[general]
|
||||
#Is Enabled?
|
||||
enabled = true
|
||||
#Cost
|
||||
# Default: 5
|
||||
# Range: > -2147483648
|
||||
cost = 5
|
||||
#Is Starter Glyph?
|
||||
starter = true
|
||||
#The maximum number of times this glyph may appear in a single spell
|
||||
# Default: 2147483647
|
||||
# Range: > 1
|
||||
per_spell_limit = 2147483647
|
||||
#The tier of the glyph
|
||||
# Default: 1
|
||||
# Range: 1 ~ 99
|
||||
glyph_tier = 1
|
||||
#Limits the number of times a given augment may be applied to a given effect
|
||||
#Example entry: "glyph_amplify=5"
|
||||
augment_limits = []
|
||||
#How much an augment should cost when used on this effect or form. This overrides the default cost in the augment config.
|
||||
#Example entry: "glyph_amplify=50"
|
||||
augment_cost_overrides = []
|
||||
@@ -0,0 +1,24 @@
|
||||
#General settings
|
||||
[general]
|
||||
#Is Enabled?
|
||||
enabled = true
|
||||
#Cost
|
||||
# Default: 5
|
||||
# Range: > -2147483648
|
||||
cost = 5
|
||||
#Is Starter Glyph?
|
||||
starter = false
|
||||
#The maximum number of times this glyph may appear in a single spell
|
||||
# Default: 2147483647
|
||||
# Range: > 1
|
||||
per_spell_limit = 2147483647
|
||||
#The tier of the glyph
|
||||
# Default: 1
|
||||
# Range: 1 ~ 99
|
||||
glyph_tier = 1
|
||||
#Limits the number of times a given augment may be applied to a given effect
|
||||
#Example entry: "glyph_amplify=5"
|
||||
augment_limits = []
|
||||
#How much an augment should cost when used on this effect or form. This overrides the default cost in the augment config.
|
||||
#Example entry: "glyph_amplify=50"
|
||||
augment_cost_overrides = []
|
||||
@@ -0,0 +1,27 @@
|
||||
#General settings
|
||||
[general]
|
||||
#Is Enabled?
|
||||
enabled = true
|
||||
#Cost
|
||||
# Default: 500
|
||||
# Range: > -2147483648
|
||||
cost = 500
|
||||
#Is Starter Glyph?
|
||||
starter = false
|
||||
#The maximum number of times this glyph may appear in a single spell
|
||||
# Default: 1
|
||||
# Range: 1 ~ 1
|
||||
per_spell_limit = 1
|
||||
#The tier of the glyph
|
||||
# Default: 3
|
||||
# Range: 1 ~ 99
|
||||
glyph_tier = 3
|
||||
#Limits the number of times a given augment may be applied to a given effect
|
||||
#Example entry: "glyph_amplify=5"
|
||||
augment_limits = ["ars_nouveau:glyph_sensitive=1"]
|
||||
#How much an augment should cost when used on this effect or form. This overrides the default cost in the augment config.
|
||||
#Example entry: "glyph_amplify=50"
|
||||
augment_cost_overrides = []
|
||||
#Prevents the given glyph from being used in the same spell as the given glyph
|
||||
#Example entry: "glyph_burst"
|
||||
invalid_combos = ["ars_nouveau:glyph_linger"]
|
||||
@@ -0,0 +1,34 @@
|
||||
#General settings
|
||||
[general]
|
||||
#Is Enabled?
|
||||
enabled = true
|
||||
#Cost
|
||||
# Default: 30
|
||||
# Range: > -2147483648
|
||||
cost = 30
|
||||
#Is Starter Glyph?
|
||||
starter = false
|
||||
#The maximum number of times this glyph may appear in a single spell
|
||||
# Default: 2147483647
|
||||
# Range: > 1
|
||||
per_spell_limit = 2147483647
|
||||
#The tier of the glyph
|
||||
# Default: 1
|
||||
# Range: 1 ~ 99
|
||||
glyph_tier = 1
|
||||
#Limits the number of times a given augment may be applied to a given effect
|
||||
#Example entry: "glyph_amplify=5"
|
||||
augment_limits = ["ars_nouveau:glyph_sensitive=1"]
|
||||
#How much an augment should cost when used on this effect or form. This overrides the default cost in the augment config.
|
||||
#Example entry: "glyph_amplify=50"
|
||||
augment_cost_overrides = []
|
||||
#Prevents the given glyph from being used in the same spell as the given glyph
|
||||
#Example entry: "glyph_burst"
|
||||
invalid_combos = []
|
||||
# Default: 0.25
|
||||
# Range: 0.0 ~ 2.147483647E9
|
||||
amplify = 0.25
|
||||
#AOE Multiplier
|
||||
# Default: 1.0
|
||||
# Range: 0.0 ~ 1.7976931348623157E308
|
||||
aoe_multiplier = 1.0
|
||||
@@ -0,0 +1,37 @@
|
||||
#General settings
|
||||
[general]
|
||||
#Is Enabled?
|
||||
enabled = true
|
||||
#Cost
|
||||
# Default: 50
|
||||
# Range: > -2147483648
|
||||
cost = 50
|
||||
#Is Starter Glyph?
|
||||
starter = false
|
||||
#The maximum number of times this glyph may appear in a single spell
|
||||
# Default: 2147483647
|
||||
# Range: > 1
|
||||
per_spell_limit = 2147483647
|
||||
#The tier of the glyph
|
||||
# Default: 2
|
||||
# Range: 1 ~ 99
|
||||
glyph_tier = 2
|
||||
#Limits the number of times a given augment may be applied to a given effect
|
||||
#Example entry: "glyph_amplify=5"
|
||||
augment_limits = ["ars_nouveau:glyph_amplify=2"]
|
||||
#How much an augment should cost when used on this effect or form. This overrides the default cost in the augment config.
|
||||
#Example entry: "glyph_amplify=50"
|
||||
augment_cost_overrides = []
|
||||
#Prevents the given glyph from being used in the same spell as the given glyph
|
||||
#Example entry: "glyph_burst"
|
||||
invalid_combos = []
|
||||
# Default: 5.0
|
||||
# Range: 0.0 ~ 2.147483647E9
|
||||
damage = 5.0
|
||||
# Default: 2.5
|
||||
# Range: 0.0 ~ 2.147483647E9
|
||||
amplify = 2.5
|
||||
#Damage per block in the air
|
||||
# Default: 0.75
|
||||
# Range: 0.0 ~ 1.7976931348623157E308
|
||||
airDamage = 0.75
|
||||
@@ -0,0 +1,35 @@
|
||||
#General settings
|
||||
[general]
|
||||
#Is Enabled?
|
||||
enabled = true
|
||||
#Cost
|
||||
# Default: 100
|
||||
# Range: > -2147483648
|
||||
cost = 100
|
||||
#Is Starter Glyph?
|
||||
starter = false
|
||||
#The maximum number of times this glyph may appear in a single spell
|
||||
# Default: 2147483647
|
||||
# Range: > 1
|
||||
per_spell_limit = 2147483647
|
||||
#The tier of the glyph
|
||||
# Default: 3
|
||||
# Range: 1 ~ 99
|
||||
glyph_tier = 3
|
||||
#Limits the number of times a given augment may be applied to a given effect
|
||||
#Example entry: "glyph_amplify=5"
|
||||
augment_limits = ["ars_nouveau:glyph_amplify=4"]
|
||||
#How much an augment should cost when used on this effect or form. This overrides the default cost in the augment config.
|
||||
#Example entry: "glyph_amplify=50"
|
||||
augment_cost_overrides = []
|
||||
#Prevents the given glyph from being used in the same spell as the given glyph
|
||||
#Example entry: "glyph_burst"
|
||||
invalid_combos = []
|
||||
#Potion duration, in seconds
|
||||
# Default: 30
|
||||
# Range: > 0
|
||||
potion_time = 30
|
||||
#Extend time duration, in seconds
|
||||
# Default: 8
|
||||
# Range: > 0
|
||||
extend_time = 8
|
||||
@@ -0,0 +1,27 @@
|
||||
#General settings
|
||||
[general]
|
||||
#Is Enabled?
|
||||
enabled = true
|
||||
#Cost
|
||||
# Default: 0
|
||||
# Range: > -2147483648
|
||||
cost = 0
|
||||
#Is Starter Glyph?
|
||||
starter = false
|
||||
#The maximum number of times this glyph may appear in a single spell
|
||||
# Default: 2147483647
|
||||
# Range: > 1
|
||||
per_spell_limit = 2147483647
|
||||
#The tier of the glyph
|
||||
# Default: 1
|
||||
# Range: 1 ~ 99
|
||||
glyph_tier = 1
|
||||
#Limits the number of times a given augment may be applied to a given effect
|
||||
#Example entry: "glyph_amplify=5"
|
||||
augment_limits = []
|
||||
#How much an augment should cost when used on this effect or form. This overrides the default cost in the augment config.
|
||||
#Example entry: "glyph_amplify=50"
|
||||
augment_cost_overrides = []
|
||||
#Prevents the given glyph from being used in the same spell as the given glyph
|
||||
#Example entry: "glyph_burst"
|
||||
invalid_combos = []
|
||||
@@ -0,0 +1,43 @@
|
||||
#General settings
|
||||
[general]
|
||||
#Is Enabled?
|
||||
enabled = true
|
||||
#Cost
|
||||
# Default: 100
|
||||
# Range: > -2147483648
|
||||
cost = 100
|
||||
#Is Starter Glyph?
|
||||
starter = false
|
||||
#The maximum number of times this glyph may appear in a single spell
|
||||
# Default: 2147483647
|
||||
# Range: > 1
|
||||
per_spell_limit = 2147483647
|
||||
#The tier of the glyph
|
||||
# Default: 3
|
||||
# Range: 1 ~ 99
|
||||
glyph_tier = 3
|
||||
#Limits the number of times a given augment may be applied to a given effect
|
||||
#Example entry: "glyph_amplify=5"
|
||||
augment_limits = []
|
||||
#How much an augment should cost when used on this effect or form. This overrides the default cost in the augment config.
|
||||
#Example entry: "glyph_amplify=50"
|
||||
augment_cost_overrides = []
|
||||
#Prevents the given glyph from being used in the same spell as the given glyph
|
||||
#Example entry: "glyph_burst"
|
||||
invalid_combos = []
|
||||
#Max ticks entities should track for motion and health, etc. Note: Entities ANYWHERE are tracking this, setting this to a high value is not recommended for low-spec machines.
|
||||
# Default: 60
|
||||
# Range: > 0
|
||||
entityRewindTracking = 60
|
||||
#How many ticks should be rewound before augments
|
||||
# Default: 40
|
||||
# Range: 1 ~ 60
|
||||
baseRewindTime = 40
|
||||
#Extend time duration, in seconds
|
||||
# Default: 20
|
||||
# Range: > 0
|
||||
extend_time = 20
|
||||
#Duration down time, in ticks
|
||||
# Default: 10
|
||||
# Range: > 0
|
||||
duration_down_time = 10
|
||||
@@ -0,0 +1,27 @@
|
||||
#General settings
|
||||
[general]
|
||||
#Is Enabled?
|
||||
enabled = true
|
||||
#Cost
|
||||
# Default: 30
|
||||
# Range: > -2147483648
|
||||
cost = 30
|
||||
#Is Starter Glyph?
|
||||
starter = false
|
||||
#The maximum number of times this glyph may appear in a single spell
|
||||
# Default: 2147483647
|
||||
# Range: > 1
|
||||
per_spell_limit = 2147483647
|
||||
#The tier of the glyph
|
||||
# Default: 1
|
||||
# Range: 1 ~ 99
|
||||
glyph_tier = 1
|
||||
#Limits the number of times a given augment may be applied to a given effect
|
||||
#Example entry: "glyph_amplify=5"
|
||||
augment_limits = ["ars_nouveau:glyph_sensitive=1"]
|
||||
#How much an augment should cost when used on this effect or form. This overrides the default cost in the augment config.
|
||||
#Example entry: "glyph_amplify=50"
|
||||
augment_cost_overrides = []
|
||||
#Prevents the given glyph from being used in the same spell as the given glyph
|
||||
#Example entry: "glyph_burst"
|
||||
invalid_combos = []
|
||||
@@ -0,0 +1 @@
|
||||
enableThirstCompat = true
|
||||
@@ -0,0 +1,16 @@
|
||||
# Default: 8.0
|
||||
# Range: 2.0 ~ 100.0
|
||||
maxShieldingAbsorption = 8.0
|
||||
# Default: 0.2
|
||||
# Range: 0.0 ~ 1.0
|
||||
wildenSpellDamageBonus = 0.2
|
||||
# Default: 0.2
|
||||
# Range: 0.0 ~ 1.0
|
||||
wildenMaxManaBonus = 0.2
|
||||
# Default: 0.2
|
||||
# Range: 0.0 ~ 1.0
|
||||
wildenManaRegenBonus = 0.2
|
||||
drygmyFarmingToolPlainCopy = false
|
||||
# Default: 2
|
||||
# Range: 0 ~ 10000
|
||||
drygmyFarmingDamageTool = 2
|
||||
@@ -0,0 +1,17 @@
|
||||
{
|
||||
"modify_range": {
|
||||
"//": "Determines if the range for the attribute should be modified or not.",
|
||||
"//default": false,
|
||||
"value": false
|
||||
},
|
||||
"min": {
|
||||
"//": "The lowest possible value for the attribute.",
|
||||
"//default": 0.0,
|
||||
"value": 0.0
|
||||
},
|
||||
"max": {
|
||||
"//": "The highest possible value for the attribute.",
|
||||
"//default": 1024.0,
|
||||
"value": 1024.0
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,17 @@
|
||||
{
|
||||
"modify_range": {
|
||||
"//": "Determines if the range for the attribute should be modified or not.",
|
||||
"//default": false,
|
||||
"value": false
|
||||
},
|
||||
"min": {
|
||||
"//": "The lowest possible value for the attribute.",
|
||||
"//default": 0.0,
|
||||
"value": 0.0
|
||||
},
|
||||
"max": {
|
||||
"//": "The highest possible value for the attribute.",
|
||||
"//default": 1.0,
|
||||
"value": 1.0
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,17 @@
|
||||
{
|
||||
"modify_range": {
|
||||
"//": "Determines if the range for the attribute should be modified or not.",
|
||||
"//default": false,
|
||||
"value": false
|
||||
},
|
||||
"min": {
|
||||
"//": "The lowest possible value for the attribute.",
|
||||
"//default": 0.0,
|
||||
"value": 0.0
|
||||
},
|
||||
"max": {
|
||||
"//": "The highest possible value for the attribute.",
|
||||
"//default": 2000.0,
|
||||
"value": 2000.0
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,17 @@
|
||||
{
|
||||
"modify_range": {
|
||||
"//": "Determines if the range for the attribute should be modified or not.",
|
||||
"//default": false,
|
||||
"value": false
|
||||
},
|
||||
"min": {
|
||||
"//": "The lowest possible value for the attribute.",
|
||||
"//default": 0.0,
|
||||
"value": 0.0
|
||||
},
|
||||
"max": {
|
||||
"//": "The highest possible value for the attribute.",
|
||||
"//default": 10000.0,
|
||||
"value": 10000.0
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,17 @@
|
||||
{
|
||||
"modify_range": {
|
||||
"//": "Determines if the range for the attribute should be modified or not.",
|
||||
"//default": false,
|
||||
"value": false
|
||||
},
|
||||
"min": {
|
||||
"//": "The lowest possible value for the attribute.",
|
||||
"//default": 0.0,
|
||||
"value": 0.0
|
||||
},
|
||||
"max": {
|
||||
"//": "The highest possible value for the attribute.",
|
||||
"//default": 10000.0,
|
||||
"value": 10000.0
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,17 @@
|
||||
{
|
||||
"modify_range": {
|
||||
"//": "Determines if the range for the attribute should be modified or not.",
|
||||
"//default": false,
|
||||
"value": false
|
||||
},
|
||||
"min": {
|
||||
"//": "The lowest possible value for the attribute.",
|
||||
"//default": 0.0,
|
||||
"value": 0.0
|
||||
},
|
||||
"max": {
|
||||
"//": "The highest possible value for the attribute.",
|
||||
"//default": 10000.0,
|
||||
"value": 10000.0
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,17 @@
|
||||
{
|
||||
"modify_range": {
|
||||
"//": "Determines if the range for the attribute should be modified or not.",
|
||||
"//default": false,
|
||||
"value": false
|
||||
},
|
||||
"min": {
|
||||
"//": "The lowest possible value for the attribute.",
|
||||
"//default": 0.0,
|
||||
"value": 0.0
|
||||
},
|
||||
"max": {
|
||||
"//": "The highest possible value for the attribute.",
|
||||
"//default": 1024.0,
|
||||
"value": 1024.0
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,17 @@
|
||||
{
|
||||
"modify_range": {
|
||||
"//": "Determines if the range for the attribute should be modified or not.",
|
||||
"//default": false,
|
||||
"value": false
|
||||
},
|
||||
"min": {
|
||||
"//": "The lowest possible value for the attribute.",
|
||||
"//default": 0.0,
|
||||
"value": 0.0
|
||||
},
|
||||
"max": {
|
||||
"//": "The highest possible value for the attribute.",
|
||||
"//default": 100.0,
|
||||
"value": 100.0
|
||||
}
|
||||
}
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user