From 03c93ed1890fecb7d1fe35d8f34916291a12ab0c Mon Sep 17 00:00:00 2001 From: Rico van Zelst Date: Sat, 22 Jun 2024 18:56:19 +0200 Subject: [PATCH] feat(Champion Model): Add 'Crimson Rush' to resource types A new resource type, 'Crimson Rush', has been added to the Champion model. This extends the range of available resource types for champions in the game. --- app/Models/Champion.php | 1 + 1 file changed, 1 insertion(+) diff --git a/app/Models/Champion.php b/app/Models/Champion.php index 98f5f67..a455c7c 100644 --- a/app/Models/Champion.php +++ b/app/Models/Champion.php @@ -47,6 +47,7 @@ class Champion extends Model 'BLOODTHIRST' => 'Bloodthirst', 'FLOW' => 'Flow', 'SOUL_UNBOUND' => 'Soul Unbound', + 'CRIMSON_RUSH' => 'Crimson Rush', ]; return $resourceTypes[$value];