diff options
author | Jesusaves <cpntb1@ymail.com> | 2020-05-27 17:55:45 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2020-05-27 17:55:45 -0300 |
commit | 553b07c18427278f1b80afde1bbfea49da3f9c59 (patch) | |
tree | b329ff02a3d83fda8830a04bac7ff4ad6301f2b4 /db | |
parent | 8c8c9f430106b32586feaee90b8146b8e04c5a64 (diff) | |
download | serverdata-jesusalva/faction.tar.gz serverdata-jesusalva/faction.tar.bz2 serverdata-jesusalva/faction.tar.xz serverdata-jesusalva/faction.zip |
This will not cause any immediate change, but it is the definition for the factions.jesusalva/faction
Factions are internally recognized as "clans" and are often reffered as "guilds"
(But in RO, a clan is also seldomly called Guild)
NOTE: SI was not updated.
Diffstat (limited to 'db')
-rw-r--r-- | db/clans.conf | 60 |
1 files changed, 28 insertions, 32 deletions
diff --git a/db/clans.conf b/db/clans.conf index 3167ce6b..0c73ca41 100644 --- a/db/clans.conf +++ b/db/clans.conf @@ -56,86 +56,82 @@ clans: ( **************************************************************************/ { Id: 1 - Const: "SWORDCLAN" - Name: "Sword Clan" - Leader: "Raffam Oranpere" - Map: "001-1" + Const: "FACTION_LEGION" + Name: "Legion of Aemil" + Leader: "Q'Anon" + Map: "001-2-39" Buff: { Icon: "SI_SWORDCLAN" Script: <" - bonus(bStr, 1); + bonus(bStr, 2); bonus(bVit, 1); bonus(bMaxHP, 30); bonus(bMaxSP, 10); "> } - Allies: [ - "GOLDENMACECLAN", + Antagonists: [ + "FACTION_BROTHERHOOD", ] }, { Id: 2 - Const: "ARCWANDCLAN" - Name: "Arc Wand Clan" - Leader: "Devon Aire" + Const: "FACTION_BROTHERHOOD" + Name: "Brotherhood of Argaes" + Leader: "Jonatas" Map: "001-1" Buff: { Icon: "SI_ARCWANDCLAN" Script: <" - bonus(bInt, 1); - bonus(bDex, 1); + bonus(bDex, 2); + bonus(bAgi, 1); bonus(bMaxHP, 30); bonus(bMaxSP, 10); "> } - Allies: [ - "GOLDENMACECLAN", - ] Antagonists: [ - "CROSSBOWCLAN", + "FACTION_LEGION", ] }, { Id: 3 - Const: "GOLDENMACECLAN" - Name: "Golden Mace Clan" - Leader: "Berman Aire" + Const: "FACTION_THIEF" + Name: "The Thieves" + Leader: "Tanveer" Map: "001-1" Buff: { Icon: "SI_GOLDENMACECLAN" Script: <" - bonus(bInt, 1); - bonus(bLuk, 1); + bonus(bLuk, 2); + bonus(bDex, 1); bonus(bMaxHP, 30); bonus(bMaxSP, 10); "> } Allies: [ - "SWORDCLAN", - "ARCWANDCLAN", - "CROSSBOWCLAN", + "FACTION_LEGION", + "FACTION_BROTHERHOOD", + ] + Antagonists: [ + "FACTION_MAGES", ] }, { Id: 4 - Const: "CROSSBOWCLAN" - Name: "Crossbow Clan" - Leader: "Shaam Rumi" + Const: "FACTION_MAGES" + Name: "The Magic Guild" + Leader: "Hocus Pocus Fidibus" Map: "001-1" Buff: { Icon: "SI_CROSSBOWCLAN" Script: <" - bonus(bDex, 1); + bonus(bInt, 2); bonus(bAgi, 1); bonus(bMaxHP, 30); bonus(bMaxSP, 10); "> } - Allies: [ - "GOLDENMACECLAN", - ] Antagonists: [ - "ARCWANDCLAN", + "FACTION_THIEF", ] }, ) |