diff --git a/public/img/homeActions/getManta.png b/public/img/homeActions/getManta.png new file mode 100644 index 0000000..7efa9e2 Binary files /dev/null and b/public/img/homeActions/getManta.png differ diff --git a/src/shark/data/HomeActions.ts b/src/shark/data/HomeActions.ts index 7670b85..4cb5015 100644 --- a/src/shark/data/HomeActions.ts +++ b/src/shark/data/HomeActions.ts @@ -77,5 +77,24 @@ export class HomeActions extends StaticClass { }, outcomes: ["S h a r k", "s.h.a.r.k.", "shark", "sharg", "that was probably a shark"], }, + catchManta: { + image: "getManta.png", + name: "Summon ray", + effect: { + resource: { + get ray() { + return Math.random() < 0.01 ? 1e9 : 1; + }, + }, + }, + outcomes: [ + "Ray", + "A dark one arrives", + "A new ray... It is haunting to look at", + "You shudder, is this what you should have done?", + "You should stop.", + "This one says it's called Raymin'o'lathep...\nA lot of them do that", + ], + }, }); }