#it is fun to tinker
Explore tagged Tumblr posts
Text
Random D&D Character Generator on R
I have been doing a lot of work on R for my research and decided to give it a go and write the script for a random D&D character generator.
It is a very simplified version and there is definitely room for improvement and expansion, but I wanted to share it with everyone for those who want to tinker with it:
#Install Packages#
install.packages("randomNames") library("randomNames")
#Function to generate a random character sheet#
generate_random_character <- function() {
# Sample races, classes, and backgrounds# races <- c( "Dwarf", "Elf", "Halfling", "Human", "Dragonborn", "Gnome", "Half-Elf", "Half-Orc", "Tiefling", "Aasimar", "Firbolg", "Genasi", "Goliath", "Hobgoblin", "Kenku", "Kobold", "Lizardfolk", "Tabaxi", "Triton", "Bugbear", "Goblin", "Hobgoblin", "Orc", "Fairy", "Satyr", "Yuan-ti Pureblood", "Aarakocra", "Aasimar", "Changeling", "Kalashtar", "Shifter", "Warforged", "Centaur", "Loxodon", "Minotaur", "Simic Hybrid", "Vedalken", "Gith (Githyanki, Githzerai)" ) classes <- c( "Barbarian", "Bard", "Cleric", "Druid", "Fighter", "Monk", "Paladin", "Ranger", "Rogue", "Sorcerer", "Warlock", "Wizard", "Artificer", "Blood Hunter" ) subclass_Barbarian <- c( "Path of the Berserker", "Path of the Totem Warrior", "Path of the Ancestral Guardian", "Path of the Storm Herald", "Path of the Zealot" ) subclass_Bard <- c( "College of Lore", "College of Valor", "College of Glamour", "College of Swords", "College of Whispers", "College of Eloquence" ) subclass_Cleric <- c( "Knowledge Domain", "Life Domain", "Light Domain", "Nature Domain", "Tempest Domain", "Trickery Domain", "War Domain", "Forge Domain", "Grave Domain", "Order Domain", "Peace Domain", "Twilight Domain" ) subclass_Druid <- c( "Circle of the Land", "Circle of the Moon", "Circle of Dreams", "Circle of the Shepherd", "Circle of Twilight" ) subclass_Fighter <- c( "Champion", "Battle Master", "Eldritch Knight", "Arcane Archer", "Cavalier", "Samurai" ) subclass_Monk <- c( "Way of the Open Hand", "Way of Shadow", "Way of the Four Elements", "Way of the Drunken Master", "Way of the Kensei", "Way of the Sun Soul" ) subclass_Paladin <- c( "Oath of Devotion", "Oath of the Ancients", "Oath of Vengeance", "Oath of the Crown", "Oath of Conquest", "Oath of Redemption", "Oath of the Watchers" ) subclass_Ranger <- c( "Hunter", "Beast Master", "Gloom Stalker", "Horizon Walker", "Monster Slayer" ) subclass_Rogue <- c( "Thief", "Assassin", "Arcane Trickster", "Mastermind", "Swashbuckler", "Inquisitive", "Scout" ) subclass_Sorcerer <- c( "Draconic Bloodline", "Wild Magic", "Divine Soul", "Shadow Magic", "Storm Sorcery", "Aberrant Mind" ) subclass_Warlock <- c( "The Archfey", "The Fiend", "The Great Old One", "The Undying", "The Celestial", "The Hexblade", "The Raven Queen" ) subclass_Wizard <- c( "School of Abjuration", "School of Conjuration", "School of Divination", "School of Enchantment", "School of Evocation", "School of Illusion", "School of Necromancy", "School of Transmutation", "War Magic", "Bladesinging" ) subclass_Artificer <- c( "Alchemist", "Artillerist", "Battle Smith", "Armorer" ) subclass_BloodHunter <- c( "Order of the Ghostslayer", "Order of the Lycan", "Order of the Profane Soul" ) backgrounds <- c( "Acolyte", "Charlatan", "Criminal", "Entertainer", "Folk Hero", "Guild Artisan", "Hermit", "Noble", "Outlander", "Sage", "Sailor", "Soldier", "Urchin", "City Watch", "Clan Crafter", "Cloistered Scholar", "Courtier", "Far Traveler", "Inheritor", "Knight", "Knight of the Order", "Mercenary Veteran", "Urban Bounty Hunter", "Uthgardt Tribe Member", "Waterdhavian Noble", "Haunted One", "Anthropologist", "Archaeologist", "Azorius Functionary", "Boros Legionnaire", "Dimir Operative", "Izzet Engineer", "Rakdos Cultist", "Selesnya Initiate", "Simic Scientist", "Criminal (Spy)", "Gladiator", "Knight (Free Agent)" ) gender <- c("Male", "Female")
# Randomly select a race, class, subclass, gender, name and background# race <- sample(races, 1) character_class <- sample(classes, 1) # Select subclass based on the character class subclass <- character_class switch(character_class, "Barbarian" = subclass <- sample(subclass_Barbarian, 1), "Bard" = subclass <- sample(subclass_Bard, 1), "Cleric" = subclass <- sample(subclass_Cleric, 1), "Druid" = subclass <- sample(subclass_Druid,1), "Fighter" = subclass <- sample(subclass_Fighter,1), "Monk" = subclass <- sample(subclass_Monk, 1), "Paladin" = subclass <- sample(subclass_Paladin, 1), "Ranger" = subclass <- sample(subclass_Ranger,1), "Rogue" = subclass <- sample(subclass_Rogue,1), "Sorcerer" = subclass <- sample(subclass_Sorcerer,1), "Warlock" = subclass <- sample(subclass_Warlock,1), "Wizard" = subclass <- sample(subclass_Wizard,1), "Blood Hunter" = subclass <- sample(subclass_BloodHunter,1) ) background <- sample(backgrounds, 1) gender <- sample(gender, 1) name <- gender switch(gender, "Male" = name <- randomNames(gender = 0,ethnicity = 5,name.order = "first.last", name.sep = " "), "Female" = name <- randomNames(gender = 1,ethnicity = 5,name.order = "first.last", name.sep = " ") ) # Generate random ability scores# ability_scores <- sample(6:18, 6, replace = TRUE)
# Create a character sheet data frame# character_sheet <- data.frame( Name = name, Race = race, Class = character_class, Subclass = subclass, Background = background, Gender = gender, Strength = ability_scores[1], Dexterity = ability_scores[2], Constitution = ability_scores[3], Intelligence = ability_scores[4], Wisdom = ability_scores[5], Charisma = ability_scores[6] )
return(character_sheet) }
#Generate a random character sheet#
random_character_sheet <- generate_random_character()
#Print the character sheet#
print(random_character_sheet)
16 notes
·
View notes
Text
Sonic girls sleepoverrrrr (ft silver)!!!
#i don't remember what made me wanna draw this#oh well#they just havin fun ^^#sonic the hedgehog#my art#sonic#idw sonic#tangle the lemur#amy rose#whisper the wolf#archie sonic#sonic comics#lanolin the sheep#blaze the cat#belle the tinkerer#nicole the holo lynx#sally acorn#bunnie rabbot#jewel the beetle#rouge the bat#cream the rabbit#surge the tenrec#sonia the hedgehog#silver the hedgehog#honey the cat
4K notes
·
View notes
Text
Sunfish, origami, one square sheet of paper
#mine#origami#sunfish#LOOK AT HIM#the last pic is sooo cute he looks soso stupid what a darling#had a lot of fun looking at sunfish images#this was one of the best fish models I've folded too#great folding sequence well made diagram#precise but with enough leeway to tinker with the shaping at the end#(note my volumizing crimps)#AND. it's even symmetrical#onward to more! fish summer is officially started#this model is by rome chenchung#you can find it in SOA'S origami record 2019-3
580 notes
·
View notes
Text
Crazy to me that Armsmaster built specific counters to a group of 5 teenagers in less than a month during which the city was being bombed by an entirely different group of villains and has two more worse groups as well. Priorities man
#parahumans#worm#i know making fun of armsmaster is easy but#it's just wild#made a psychic shielding for tt empathy shielding for regent or something#tuning rod for grue bug zapper for skitter#probably already had the wrecking ball thing he pulled on rachel but still#there were two maybe three days that didnt have an active bomb threat for BB#after he found out their powers from the wards bc of the bank fight#so either tinkers are bullshit and he built all that in that span or he did it while bakuda was blowing shit up which. yeah.#getting this out of my drafts (1/90) lol
323 notes
·
View notes
Text
mr goatman... goat me a man.... make him the goatest that ive ever seen...
#my art#fanart#starkid#team starkid#hatchetfield#hatchetverse#tinky#t'noy karaxis#tnoy karaxis#the tinkerer#i think since he experiences all of time and space at once that in his 'true form' he sort of fades and flickers between alternate poses#n such#his appearance here is very much inspired by how he appears in the black book#the half skull face and the horn turning to gears is so <3#(ted voice) smash#yknow for someone whos favorite is wiggly i sure draw tinky a lot. hes just fun i love him#i know ive been cranking a lot of art out lately#well you see i am on break from uni and also im going insane. so its a great mixture#dont worry im going back to uni in a week and ill go back to drawing once every two weeks <3
597 notes
·
View notes
Text
So I may have accidentally pulled a Bee Movie-
#as we all know jizzie are soulmates in every universe#even if it results in bee movie-esque shenanigans#also I don’t tend to draw with non-literal colors(?? is there a better word for this?)#so this was a fun exercise in that!#hermit hollow au#mcyt#hermitcraft#hermitcraft au#hermitcraft x tinkerbell#ldshadowlady#lizzie ldshadowlady#smallishbeans#joel smallishbeans#tinker talent!joel#grian#fast flying talent!grian#jizzie#the dork doodles
213 notes
·
View notes
Text
redesigns for fun!! :]
#i like the og designs#just found myself having fun tinkering#my art#tadc#the amazing digital circus#fanart#pomni#ragatha#jax#gangle#might do others if i feel like it
201 notes
·
View notes
Text
been playing caves of cuq lately, and i have like only 30% any idea what im doing (only 10 hours in) but i'm fighting some tribal people made of wood using an apple orchard as cover, and smash through a wall to get around to the last enemy, only to dig out into a somewhat tribesman looking sprite, look at her to see if it's actually an enemy, and see this:
okay, not an enemy. cool.
time to focus back on the other guys-
IM WHAT?
IM LOVESICK?
#nuggy plays#caves of qud#gotta say im having a lot of fun with the game tho#i have not touched truekin or any of that tinkering or cybernetic stuff yet bc it Scares me#and this file is a mutant so i cant anyways but#trying to unga bunga smash guns and psychic mind blasting assholes with an axe has been fun#this game is really detailed and expansive#it just took like 2 hours to figure out how to use most of the controls
106 notes
·
View notes
Text
sticks him in wisdom's high fashion OP fit. for funsies
#my art#one piece#donquixote doflamingo#if i tinker with this any longer it wont get uploaded OMEGALUL#i did not intend to color. then i did not intend to start rendering. then i got possessed#<- B&W sketch enjoyer#but this was still very fun to do :3
160 notes
·
View notes
Text
“Yeah, remember how that one gal in middle school evolved from a pichu? It was the weirdest thing! She didn’t have any friends to let her evolve in the first place… She’s back in town apparently. She keeps asking people if they know about some kid who supposedly used to lived here. In a town this small, though? There’s no way that little boy grew up with us. We’d know if he did. After all…
“… In this town, everybody knows everybody.”
#starting to tinker with that EFverse-inspired project more. it’s still mega-early in its development. but it’s shaping up to be super fun!#anyhoo:#What would you do if your best friend went missing one day and no one remembered him but you?#your parents move your family out of your hometown.#they’re convinced you went through something traumatic. so they decide to leave behind everything you knew to give you a fresh start.#but you’re screaming and crying the whole ride there because you *know* your best friend is still in the town you’re leaving behind.#he’s still there. you know it. you just have to find the person who stole him.#your grandma used to mutter about beings that steal people away and leave nothing behind. not even people’s memories#and now that you’re looking for the being beyond comprehension that stole your best friend?#that being has turned its greedy eyes to you.#pokemon#Pokémon#pokémon fanart#pokemon fanart#pokémon art#pokemon art#pokémon anthro#pokemon anthro#pokémon characters#pokemon characters#anthro art#anthro#sfw furry#sfw anthro#stuff by sofie
115 notes
·
View notes
Text
sona :) any pronouns
#its my Guy#ive been working on this for a bit now..! its been a fun thing to tinker on after work days#sona tag#art tag#digital art#2023
452 notes
·
View notes
Text
Presenting my FIRST furby custom!!! 🩷💛
Yet ANOTHER of my unnamed furbs 😅
This sweet baby came to me mute as your standard church mouse! I don't have the materials right now for speaker replacement, but I did have a desire to try some of these furby tutorials!
As you can see [they can't 🥴] they're missing eye chips! Those are still in transit and you can probably guess what they're going to look like! X3
This was a great learning experience! There's actually a heart and star on their eyelids, but I placed them too high and may have layered paint/glitter/mod podge too thick, as the eyelids don't seem to want to move on their own anymore 😅😂
I added the rhinestones when I realized the eye art I made wasn't going to be as visible as planned!
Regardless, I love this lil baby all the same!! Love how their colors turned out (pink and yellow are my personal faves 🥰) and hoping I figure out a fitting name sooner or later!
#furby#furblr#custom furby#allfurby#all furby#furby fandom#furby community#1998 furby#pink and yellow#genuinle this was SO FUN/tinkering with all the parts and pieces really took me back to being a kid and disassembling my tamagotchis tryna/#/do up my own customs by switching buttons and backdrops between shells#my furby#f: unnamed#art#art project#church mouse furby#custom church mouse furby
90 notes
·
View notes
Text
"You fight like you're bigger than you are." Straightening up, you pant lightly and peer around the edges of your wings back at Cassian—who apparently isn't done talking at all. He nods to you, in reference the maneuver you've just performed. "That is a move usually far better suited for someone of a larger stature." You clear your throat, wings curling in a bit closer around you. "Yes. Azriel, he- he was trying to rectify that. There's only one way to train Illyrians, as I'm sure you know." Cassian nods, lowering the sword to hang at his side. "That I do. However, I feel Azriel may have been taking the wrong approach given... the information he was not privy to at the time." Your brows knit together, something wrong twisting in your chest. "Because I'm..." Female. "Not a male?" The words come out sharp without meaning to.
snippet from chapter ten of whom the shadows sing for which is coming soon! thanks for sitting tight my lovelies <3
#a distraction from the insanity of the day perhaps?#if i had the chapter finished i would post it trust#alas i am tinkering away to get it finished!#sloane speaks#whom the shadows sing for (and the thief’s echoing hymn)#whom the shadows sing for#wip#snippet#azriel#wtssf#again i am having the time of my life writing cassian he is so much FUN#and to the person who asked... yes u will see some azriel pov#im not spoiling it tho
39 notes
·
View notes
Text
Neo Metal Sonic refs I made for myself but figured would post for other people to use! :]
(click for better quality ofc)
alt + random closeups under the cut!
#neo metal sonic#metal sonic#sonic the hedgehog#sonic refs#sonic speed simulator#sonic heroes#this is the speed simulator model btw! I spent the last 3ish hours rendering these djkfdgjghj#and of course made 3 flavors of shader. bc Im indecisive . help#this isnt my blender model rip btw!#I have a guy that does speedsim rips but the way he does it bypasses roblox's anti-cheat and violates their tos#and he also does dream team rips and the closed api of apple arcade means theres questionable legality surrounding it#so I cant currently direct you to a way to download them I dont wanna get him in trouble sowwy :( but thats also part of why Im posting thi#if theres a specific angle or detail you want from this model lmk in an ask Im having fun tinkering with this model I dont mind :]#I also have the original individual full-resolution renders on this sheet if you want one of them by itself
82 notes
·
View notes
Text
Coriolanus Snow's Visit to Dean Casca Highbottom + Highbottom's Death
—The Hunger Games: The Ballad of Songbirds and Snakes (2023)
#I could probably tinker with this longer but uhhh#wow making gifs of two characters who impact the plot? is this even my blog?????? but someone requested it and it sounded fun#I kinda want to draw Peter Dinklage. I probably won’t but staring at his face reminded me that I miss drawing older characters with wrinkle#long post#the ballad of songbirds and snakes#abyssal stuff#abyssal gifs#tbosasedit#thgedit#gifs#gifset#the hunger games#coriolanus snow#casca highbottom#dean highbottom#thg series#tbosas#tom blyth#peter dinklage#god i hope people have the shorten long post feature
77 notes
·
View notes
Text
forgot to post it here, but i made a mod that adds belle the tinkerer to dr robotniks ring racers. havent released it but i might if i end up going back to polish it
she so silly
#ive never done pixel art like this before so it was a fun learning experience!!#belle the tinkerer#dr robotniks ring racers#ring racers#sonic the hedgehog#sth#sonic idw#my art
66 notes
·
View notes