Pre-Crow Foreseight Stuff
parent
69e8998b81
commit
728c673fe6
@ -0,0 +1,22 @@
|
||||
%YAML 1.1
|
||||
%TAG !u! tag:unity3d.com,2011:
|
||||
--- !u!114 &11400000
|
||||
MonoBehaviour:
|
||||
m_ObjectHideFlags: 0
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
m_PrefabInstance: {fileID: 0}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
m_GameObject: {fileID: 0}
|
||||
m_Enabled: 1
|
||||
m_EditorHideFlags: 0
|
||||
m_Script: {fileID: 11500000, guid: b44d66bdcfad03b4eb26798e1aa6dfaa, type: 3}
|
||||
m_Name: Crows Foresight Ability
|
||||
m_EditorClassIdentifier:
|
||||
abilityKey: CrowsForesight
|
||||
abilityName: Crows Foresight
|
||||
abilityRadius: 10
|
||||
abilityMagnitude: 10
|
||||
abilityDuration: 30
|
||||
abilityCooldownTime: 10
|
||||
abilityApplicationRadius: 20
|
||||
prefab: {fileID: 0}
|
@ -0,0 +1,8 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 6b4485e4bc8be814db7fc22a6778fbd5
|
||||
NativeFormatImporter:
|
||||
externalObjects: {}
|
||||
mainObjectFileID: 11400000
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
@ -0,0 +1,13 @@
|
||||
using System.Collections;
|
||||
using System.Collections.Generic;
|
||||
using Unity.BossRoom.Gameplay.GameplayObjects.Character;
|
||||
using UnityEngine;
|
||||
|
||||
[CreateAssetMenu(menuName = "Abilities/CrowsForesight")]
|
||||
public class CrowsForesightAbility : Ability
|
||||
{
|
||||
public override void Execute(ServerCharacter character, Vector3 targetPosition, Vector3 targetRotation)
|
||||
{
|
||||
throw new System.NotImplementedException();
|
||||
}
|
||||
}
|
@ -0,0 +1,11 @@
|
||||
fileFormatVersion: 2
|
||||
guid: b44d66bdcfad03b4eb26798e1aa6dfaa
|
||||
MonoImporter:
|
||||
externalObjects: {}
|
||||
serializedVersion: 2
|
||||
defaultReferences: []
|
||||
executionOrder: 0
|
||||
icon: {instanceID: 0}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
Loading…
Reference in New Issue