Skip to content
This repository has been archived by the owner on Feb 7, 2024. It is now read-only.

Commit

Permalink
feat: add zariman cycle
Browse files Browse the repository at this point in the history
  • Loading branch information
SlayerOrnstein committed Jun 26, 2022
1 parent 9780fef commit 761f24d
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions lib/src/entities/worldstate/zariman.dart
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
import '../../../objects.dart';

class Zariman extends CycleObject {
const Zariman({
required super.id,
required super.activation,
required super.expiry,
required super.state,
required this.isCorpus,
});

final bool isCorpus;

@override
bool get getStateBool => isCorpus;

@override
String get nextState => !isCorpus ? 'Grineer' : 'Corpus';

@override
List<Object?> get props => super.props..add(isCorpus);
}

0 comments on commit 761f24d

Please sign in to comment.