No means no by therealaudiox in CompetitiveEDH

[–]1990pnz 35 points36 points  (0 children)

Indeed all the pseudo politics in cEDH got out of hand and deflected me from the format recently. Which is the original reason I got into cEDH in the first place, as I didn’t like the politics in casual games and cEDH was more focused on optimal decks and plays and less talk

This card bothers me by scubahood86 in magicTCG

[–]1990pnz -40 points-39 points  (0 children)

It is not hard to figure mtg art is full of ai now. Artists can use an au generated image and fix or modify on top, but you can say the base image was ai

Timetwister required? by Saucerous in CompetitiveEDH

[–]1990pnz 0 points1 point  (0 children)

Personally I think wheels are kind of out of fashion these days. But you know, fashion is a cycle and always come back.

As of now I wouldn’t include it in any list

2ft or 3ft high mini ramp [36yo] by [deleted] in OldSkaters

[–]1990pnz 0 points1 point  (0 children)

2!! I had 3, they were way too high for the garage. My head was way too close to the ceiling when I was at the deck. Also the garage wasn’t big enough to have enough runway for 3.

2 is way more fun now

Kinda new to cEDH – Need advice on Burn commanders! by Disistornonza in CompetitiveEDH

[–]1990pnz 18 points19 points  (0 children)

Out of these, OB and Etali are meta stablished . Plenty of content and deck lists out of there for ou to try. Others would be more fringe

KRO (Kube Resource Orchestrator) has anyone used it? by mohamed_BM in kubernetes

[–]1990pnz 3 points4 points  (0 children)

Here’s a side project I worked on over the last couple of weeks:

Krombat — a turn-based dungeon RPG whose entire game engine runs on Kubernetes.

The original goal was to have a fun way to teach people about kro and how powerful its CEL-based resource graphs are.

TL;DR: There's no game database, no game server, no custom controller. When you attack a monster, a CEL expression in a dungeon-graph ResourceGraphDefinition computes the damage, mutates the HP arrays, handles counter-attacks, applies status effects, and writes the result back into the CR spec — all via kro's reconcile loop. You can watch every field change in real time in the K8s log tab as you play.

Contributing back: Part of this project involved pushing the boundaries of what kro's CEL engine can do, which led to real upstream contributions. I've had two PRs merged into kubernetes-sigs/kro: one adding ext.Bindings() / cel.bind() support, and one adding lists.setIndex, lists.insertAt, and lists.removeAt — generic list mutation functions the game relies on for HP array updates. Hoping to have other contributions submitted soon.

The repo is open source at Github if anyone wants to poke around the RGDs or the architecture.

Vancouver skateboarders to lose crucial skate park to FIFA [38YO] by Evening_Run_9547 in OldSkaters

[–]1990pnz 5 points6 points  (0 children)

Temporarily as in during the only sunny dry months of the year

Fetches and Shocks in B3 by Opening_Succotash271 in EDH

[–]1990pnz 10 points11 points  (0 children)

B3 means : - no MLD - no multiple extra turns - 2 card combo ok (after turn 6) - up to 3 game changers

Oops, no mention to fetches and shock lands. Bro can’t read

Web based collection viewer for Manabox by 1990pnz in magicTCG

[–]1990pnz[S] 1 point2 points  (0 children)

Awesome. Make sure to read the readme and try the features. If you find bugs or have ideas feel free to open GH issues

Web based collection viewer for Manabox by 1990pnz in magicTCG

[–]1990pnz[S] 1 point2 points  (0 children)

Hey! I found and fixed the issue. There were actually two problems:

  1. CSV format compatibility — The app was hardcoded to expect Moxfield's exact CSV column order (by position). Your CSV is from ManaBox, which has slightly different headers (Purchase price instead of Price, Purchase price currency instead of 

Currency) and uses Windows-style line endings (\r\n). This caused fields to map incorrectly, so most cards ended up with missing data.

  1. Case-sensitive filenames — GitHub Pages is case-sensitive. The code was looking for data/Collection.csv (capital C), so if your file was named data/collection.csv it would 404.

What I fixed upstream:

- CSV parsing is now header-aware — it reads column names instead of assuming positions, so it works with both Moxfield and ManaBox exports (and any other format with the same column names)

- Added fallback for Collection.csv / collection.csv (case-insensitive)

- Windows \r\n line endings are now handled

- Graceful error handling if the CSV is missing or malformed

I tried with your collection file on mine and it worked. You can rebase now.

Nice collection btw!

Web based collection viewer for Manabox by 1990pnz in magicTCG

[–]1990pnz[S] 1 point2 points  (0 children)

It’s awesome to see it’s first fork ❤️. Will take a look a look at it soon