From 362295c3174aa713bcd9d80d4d667cdd7e40de29 Mon Sep 17 00:00:00 2001 From: Kezz Date: Fri, 6 Dec 2024 14:22:24 +0000 Subject: [PATCH] feature: Add anglr tokens to currency --- schema.graphqls | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/schema.graphqls b/schema.graphqls index 4be38b2..5c0491f 100644 --- a/schema.graphqls +++ b/schema.graphqls @@ -152,14 +152,17 @@ type Currency { "The number of gems the player currently has." gems: Int! - "The amount of Royal Reputation the player currently has." + "The number of Royal Reputation the player currently has." royalReputation: Int! - "The amount of silver the player currently has." + "The number of silver the player currently has." silver: Int! - "The amount of material dust the player currently has." + "The number of material dust the player currently has." materialDust: Int! + + "The number of A.N.G.L.R. Tokens the player currently has." + anglrTokens: Int! } "A player's current status."