Anton Tarasenko
2 years ago
6 changed files with 210 additions and 0 deletions
@ -0,0 +1,85 @@ |
|||||||
|
[AcediaCore.EntityAliasSource] |
||||||
|
; Standard zeds |
||||||
|
[KFChar:ZombieClot_STANDARD EntityAliases] |
||||||
|
Alias="clot" |
||||||
|
Alias="zombie" |
||||||
|
Alias="pawn" |
||||||
|
Alias="trash" |
||||||
|
Alias="ct" |
||||||
|
[KFChar:ZombieCrawler_STANDARD EntityAliases] |
||||||
|
Alias="crawler" |
||||||
|
Alias="cravler" |
||||||
|
Alias="spider" |
||||||
|
Alias="spiderman" |
||||||
|
Alias="arachnid" |
||||||
|
Alias="cr" |
||||||
|
[KFChar:ZombieStalker_STANDARD EntityAliases] |
||||||
|
Alias="stalker" |
||||||
|
Alias="invis" |
||||||
|
Alias="invisible" |
||||||
|
Alias="st" |
||||||
|
[KFChar:ZombieGorefast_STANDARD EntityAliases] |
||||||
|
Alias="gorefast" |
||||||
|
Alias="red" |
||||||
|
Alias="blade" |
||||||
|
Alias="gore" |
||||||
|
Alias="gr" |
||||||
|
[KFChar:ZombieBloat_STANDARD EntityAliases] |
||||||
|
Alias="bloat" |
||||||
|
Alias="bt" |
||||||
|
Alias="vomit" |
||||||
|
Alias="fat" |
||||||
|
[KFChar:ZombieSiren_STANDARD EntityAliases] |
||||||
|
Alias="siren" |
||||||
|
Alias="sn" |
||||||
|
Alias="witch" |
||||||
|
Alias="screaming" |
||||||
|
Alias="scream" |
||||||
|
Alias="loud" |
||||||
|
[KFChar:ZombieHusk_STANDARD EntityAliases] |
||||||
|
Alias="husk" |
||||||
|
Alias="hsk" |
||||||
|
Alias="flamer" |
||||||
|
Alias="flame" |
||||||
|
Alias="fire" |
||||||
|
Alias="ranged" |
||||||
|
Alias="shooter" |
||||||
|
Alias="shoot" |
||||||
|
[KFChar:ZombieScrake_STANDARD EntityAliases] |
||||||
|
Alias="scrake" |
||||||
|
Alias="scrak" |
||||||
|
Alias="sc" |
||||||
|
Alias="chainsaw" |
||||||
|
Alias="chain" |
||||||
|
Alias="saw" |
||||||
|
Alias="bald" |
||||||
|
Alias="mask" |
||||||
|
Alias="doctor" |
||||||
|
[KFChar:ZombieFleshpound_STANDARD EntityAliases] |
||||||
|
Alias="fleshpound" |
||||||
|
Alias="fleshpond" |
||||||
|
Alias="flesh" |
||||||
|
Alias="flashpound" |
||||||
|
Alias="flashpoud" |
||||||
|
Alias="flash" |
||||||
|
Alias="pound" |
||||||
|
Alias="poud" |
||||||
|
Alias="fp" |
||||||
|
Alias="big" |
||||||
|
Alias="lamp" |
||||||
|
[KFChar:ZombieBoss_STANDARD EntityAliases] |
||||||
|
Alias="patriarch" |
||||||
|
Alias="patty" |
||||||
|
Alias="pat" |
||||||
|
Alias="boss" |
||||||
|
Alias="finalboss" |
||||||
|
Alias="daddy" |
||||||
|
Alias="leader" |
||||||
|
Alias="bos" |
||||||
|
Alias="KevinClamely" |
||||||
|
Alias="Kevin" |
||||||
|
Alias="Clamely" |
||||||
|
Alias="KevinClam" |
||||||
|
Alias="Clame" |
||||||
|
Alias="Kev" |
||||||
|
Alias="Kevster" |
@ -0,0 +1,26 @@ |
|||||||
|
/** |
||||||
|
* Source intended for entity aliases. |
||||||
|
* Copyright 2022 Anton Tarasenko |
||||||
|
*------------------------------------------------------------------------------ |
||||||
|
* This file is part of Acedia. |
||||||
|
* |
||||||
|
* Acedia is free software: you can redistribute it and/or modify |
||||||
|
* it under the terms of the GNU General Public License as published by |
||||||
|
* the Free Software Foundation, version 3 of the License, or |
||||||
|
* (at your option) any later version. |
||||||
|
* |
||||||
|
* Acedia is distributed in the hope that it will be useful, |
||||||
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of |
||||||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
||||||
|
* GNU General Public License for more details. |
||||||
|
* |
||||||
|
* You should have received a copy of the GNU General Public License |
||||||
|
* along with Acedia. If not, see <https://www.gnu.org/licenses/>. |
||||||
|
*/ |
||||||
|
class EntityAliasSource extends AliasSource |
||||||
|
config(AcediaAliases); |
||||||
|
|
||||||
|
defaultproperties |
||||||
|
{ |
||||||
|
aliasesClass = class'EntityAliases' |
||||||
|
} |
@ -0,0 +1,28 @@ |
|||||||
|
/** |
||||||
|
* Per-object-configuration intended for entity aliases. |
||||||
|
* Copyright 2022 Anton Tarasenko |
||||||
|
*------------------------------------------------------------------------------ |
||||||
|
* This file is part of Acedia. |
||||||
|
* |
||||||
|
* Acedia is free software: you can redistribute it and/or modify |
||||||
|
* it under the terms of the GNU General Public License as published by |
||||||
|
* the Free Software Foundation, version 3 of the License, or |
||||||
|
* (at your option) any later version. |
||||||
|
* |
||||||
|
* Acedia is distributed in the hope that it will be useful, |
||||||
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of |
||||||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
||||||
|
* GNU General Public License for more details. |
||||||
|
* |
||||||
|
* You should have received a copy of the GNU General Public License |
||||||
|
* along with Acedia. If not, see <https://www.gnu.org/licenses/>. |
||||||
|
*/ |
||||||
|
class EntityAliases extends Aliases |
||||||
|
perObjectConfig |
||||||
|
config(AcediaAliases_Entities); |
||||||
|
|
||||||
|
defaultproperties |
||||||
|
{ |
||||||
|
configName = "AcediaAliases_Entities" |
||||||
|
sourceClass = class'EntityAliasSource' |
||||||
|
} |
Loading…
Reference in new issue