From 685107d2fcab5d3d5e3166c2e33777768cb1e6cc Mon Sep 17 00:00:00 2001 From: diogo464 Date: Thu, 30 Oct 2025 20:21:13 +0000 Subject: added support for snorlax machines --- src/machine.rs | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/machine.rs b/src/machine.rs index ce5068f..ea5fe57 100644 --- a/src/machine.rs +++ b/src/machine.rs @@ -141,7 +141,10 @@ define_machines!( (Squirtle4, 53, "squirtle-4", 24, "bond0"), (Staryu1, 54, "staryu-1", 12, todo!()), (Sudowoodo1, 55, "sudowoodo-1", 16, todo!()), - (Vulpix1, 56, "vulpix-1", 112, todo!()) + (Vulpix1, 56, "vulpix-1", 112, todo!()), + (Snorlax01, 57, "snorlax-01", 64, "bond0"), + (Snorlax02, 58, "snorlax-02", 64, "bond0"), + (Snorlax03, 59, "snorlax-03", 64, "bond0") ); pub async fn for_each( -- cgit