Need a little break to gamble your life savings away?! Well stop on in to the vimcino where we will be happy to take the weight of all that virtual cash off your hands!
- ๐น๏ธ In-Editor Games (Deathroll, Blackjack, maybe more in the future!)
- ๐ Game Statistics Tracking (Wins/Losses/Currency)
- ๐ฐ Virtual Currency System (That does nothing!)
- ๐ Save File Persistence
- ๐ Reward System If your mind is so broken you need to gameify everything!
Using your favorite package manager:
{
"steveslatky/vimcino",
--- optional custom options
---@field vimcino.Config
opts = {
-- Change up the functionally if wanted
},
},Plug 'your-username/vimcino'
lua require("vimcino").setup(opts)add({
source = 'neovim/nvim-lspconfig',
config = function()
-- Plugin configuration
---@field vimcino.Config
require('vimcino').setup(opts)
end
})M.default_config = {
stats = {
file_loc = nil, -- This will store it in the plugin directory
},
blackjack = {
number_of_decks = 1,
},
rewards = {
enable = false,
goal = 10000,
value = 100,
notify = false,
},:Vimcino " Open the game selector
:VimcinoStats " View your statsDeathroll is a high-stakes dice game of chance and diminishing odds, popularized in World of Warcraft. Players take turns rolling a virtual die with ever-shrinking numbers until one participant lands on 1 and loses the round.
Starting Number: Players agree on an initial number (e.g., 1000)
Turn Sequence:
Player 1 rolls between 1 and starting number Computer then rolls between 1 and Player 1's result This continues until someone rolls 1 Loss Condition: The player who rolls 1 loses the round
A classic casino card game where players compete against the dealer to reach the closest hand value to 21 without going over.
- Beat the dealer by having:
- A higher hand value without exceeding 21
- Letting the dealer bust (exceed 21)
- A natural blackjack (Ace + 10-value card) unless dealer also has one
| Cards | Value |
|---|---|
| 2-10 | Face value |
| J, Q, K | 10 |
| A | 1 or 11 (player's choice) |
- Place Bet: Risk virtual currency
- Initial Deal:
- Player receives 2 face-up cards
- Dealer gets 1 face-up and 1 face-down card
- Player Actions:
- Hit: Take another card
- Stand: Keep current hand
- Dealer Reveal: Dealer reveals hidden card and draws until reaching 17+
- Outcome:
- Win: 1:1 payout (3:2 for natural blackjack)
- Lose: Forfeit bet
- Push: Tie (return bet)
Gives you currency for pressing enough keys!
According to my middle manager, key presses is the ultimate form of productivity. So you should be rewarded with some fake money to make you the most productive! You have full control how this system works for you.
default_opts = {
rewards = {
enable = false, -- Won't work if false
goal = 10000, -- Number of key presses needed to be rewarded
value = 100, -- Amount you get rewarded with
notify = false, -- lets you know every time you met the goal
},