2021-02-14 16:08:59 +01:00
|
|
|
using System.Collections;
|
|
|
|
using System.Collections.Generic;
|
|
|
|
using UnityEngine;
|
|
|
|
|
2021-02-19 16:14:14 +01:00
|
|
|
public class Artefact : ScriptableObject
|
2021-02-14 16:08:59 +01:00
|
|
|
{
|
|
|
|
|
2021-02-19 16:14:14 +01:00
|
|
|
public int artefactID => _artefactID;
|
|
|
|
[SerializeField] private int _artefactID;
|
2021-02-23 14:05:42 +01:00
|
|
|
public string dialogueKey => _dialogueKey;
|
|
|
|
[SerializeField] private string _dialogueKey;
|
2021-02-14 16:08:59 +01:00
|
|
|
|
2021-03-02 17:33:31 +01:00
|
|
|
public string Name => _name;
|
|
|
|
[SerializeField] private string _name;
|
|
|
|
|
2021-02-19 16:14:14 +01:00
|
|
|
public bool show => _show;
|
|
|
|
private bool _show = false;
|
|
|
|
public bool canInteract => _canInteract;
|
|
|
|
private bool _canInteract = false;
|
2021-02-14 16:08:59 +01:00
|
|
|
|
2021-03-01 17:18:24 +01:00
|
|
|
public virtual void Pickup()
|
2021-02-25 21:12:08 +01:00
|
|
|
{
|
|
|
|
}
|
2021-02-14 16:08:59 +01:00
|
|
|
}
|