mirror of
https://bitbucket.org/Ioncannon/project-meteor-server.git
synced 2025-04-02 19:42:05 -04:00
Added formulas for base EXP gain and chain experience Added basic scripts for most player abilities and effects Added stat gains for some abilities Changed status flags Fixed bug with player death Fixed bug where auto attacks didnt work when not locked on Added traits
29 lines
676 B
C#
29 lines
676 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace FFXIVClassic_Map_Server.actors.chara.ai
|
|
{
|
|
class BattleTrait
|
|
{
|
|
public ushort id;
|
|
public string name;
|
|
public byte job;
|
|
public byte level;
|
|
public uint modifier;
|
|
public int bonus;
|
|
|
|
public BattleTrait(ushort id, string name, byte job, byte level, uint modifier, int bonus)
|
|
{
|
|
this.id = id;
|
|
this.name = name;
|
|
this.job = job;
|
|
this.level = level;
|
|
this.modifier = modifier;
|
|
this.bonus = bonus;
|
|
}
|
|
}
|
|
}
|