#Gud's Minecraft mod

1 messages · Page 1 of 1 (latest)

tiny basin
#

Ive been asked to do this by someone, so ima do this.
updates will be here

#

@vague oyster

vague oyster
#

wow

tiny basin
#

yeah

vague oyster
#

i can help a bit with code

tiny basin
#

Put ideas down if you have any

#

Any help helps ofc, but id like to try be the main everything for the mod, (even if that means i do 50% of everything)

vernal forum
#

add the mines

tiny basin
#

Ima try not add tons of movie references

vernal forum
#

what

#

mines

#

from minecraft

tiny basin
#

Ok, well at least you mean those mines 😭

#

the google docs is free to be commented on

vernal forum
#

i cba rn

#

eating

tiny basin
#

Im gonna sleep soon

vernal forum
#

will there be Entropy crossmod

#

The Flipside!

#

Dagger Jockey!

tiny basin
#

There could be

vernal forum
#

Fervour and Steel!

tiny basin
#

Art box cross mod will prob exist

#

It will for my other mod

vernal forum
#

nice

tiny basin
#

I think i know how to set up cross mod, but maybe not

tiny basin
#

@vernal forum There is a entropy crossmod tab, you can add what you think is best

tiny basin
tiny basin
#

you do know you can comment on the google sheets

#

oh

#

right

#

lol

#

I love me some antvenom

#

good vids

tiny basin
nimble goblet
#

hi i exist now

tiny basin
#

you do

#

Im working on serveral mods at the same time

#

including this

nimble goblet
#

dam

#

isnt overstacking just

#

+64 mult or +64 chips?

tiny basin
#

No, it sets your chips and mult to 65 if its any less

nimble goblet
#

most of the suggestions arent really... descriptive

tiny basin
#

no, not really

#

just names

#

and thats about it

#

and even then, the effects seem like not much

nimble goblet
#

hmmmm

pallid shard
#

I have an idea for the mod.

tiny basin
#

yeah ok

pallid shard
#

but it's not letting my jot down the idea on the excell page.

tiny basin
pallid shard
#

Oh. I'm dum.

tiny basin
#

just so no one greifs

nimble goblet
#

oh

#

Gud

#

i got an idea

#

fusing minecraft food items with golden jokers turn em gold

#

also should i give you the code to add fusion compat?

tiny basin
#

Also ima brb, i have to feed my chameleons

#

yes i have some

nimble goblet
#

cool

tiny basin
#

Done

tiny basin
nimble goblet
#

if next(SMODS.find_mod("FusionJokers")) then
[insert_prefix]_has_Fusion = true
else
[insert_prefix]_has_Fusion = false
end

#

if [insert_prefix]_has_Fusion == true then
SMODS.load_file("/Fusions.lua")()
end

pallid shard
#

The only other idea I've got on the top of my head is crossmod with which ever mod adds burnt cards in which lava chicken is a consumable that burns up to 3 selected playing cards in reference to how the lava chicken addon from bedrock works.

nimble goblet
#

or hear me out

tiny basin
#

ok

nimble goblet
#

consumable called lava bucket

#

to cook foods

#

or just

#

lava chicken

#

anyways

#

for the enchanted edition

#

i think it shouldnt have innate effects BUT

#

for example

#

if you enchant a golden apple it becomes a notch apple and its abilities change

#

(i know how to manipulate descriptions and etc.)

tiny basin
#

this just seems like its tons of crossmod 😭

nimble goblet
#

market place adds more stuff to buy in the shop

#

like idk +1 joker slot, +1 voucher slot, +1 pack slot but increases prices by 25%

#

...

#

imma just

#

uh

#

apple could have +10 mult, for the next 8 hands

#

gold apple could have 2x mult for the next 8 hands

#

and notch apple is [insert broken effect]

#

im gonna try making marketplace

#

that was easier than i thought

#

almost done

tiny basin
#

Ima try make the enchanted edition

nimble goblet
#

dude lemme finish it first so then i can send you the code

tiny basin
#

i am waiting

#

Im just saying im making something else, being an edition

nimble goblet
#

ok

nimble goblet
#

GUD

#

i made the jonkler

#

BUT

#

i cant make it remove vouchers after selling it

tiny basin
nimble goblet
#

ok

#

imma give it

#

SMODS.Joker {
key = 'marketplace',
rarity = 2,
loc_txt = {
name = 'Marketplace',
text = {'adds a voucher, and a card to the shop, but increases prices by 25%'}
},
discovered = false,
config = { extra = { shop_size = 1} },
add_to_deck = function(self, card, from_debuff)
G.E_MANAGER:add_event(Event({
func = function()
change_shop_size(card.ability.extra.shop_size)
return true
end
}))
local voucher = SMODS.change_voucher_limit(1)
G.E_MANAGER:add_event(Event({
func = function()
G.GAME.discount_percent = G.GAME.discount_percent - 25
for _, v in pairs(G.I.CARD) do
if v.set_cost then v:set_cost() end
end
return true
end
}))
end,
remove_from_deck = function(self, card, from_debuff)
G.E_MANAGER:add_event(Event({
func = function()
change_shop_size(-card.ability.extra.shop_size)
return true
end
}))
local voucher = SMODS.change_voucher_limit(-1)
G.E_MANAGER:add_event(Event({
func = function()
G.GAME.discount_percent = G.GAME.discount_percent + 25
for _, v in pairs(G.I.CARD) do
if v.set_cost then v:set_cost() end
end
return true
end
}))
end,
}

#

here ya go

tiny basin
nimble goblet
#

i mean it is your mod

nimble goblet
tiny basin
#

yeah, thx

#

ill think about it

nimble goblet
#

what dont work?

tiny basin
nimble goblet
#

add a _ next to the ,v

tiny basin
#

what side of the ", v"

nimble goblet
#

its supposed to look like this