[Feedback] Make Magical Seeds processable into Mysterious Seeds | Black Desert NA/EU (2024)

  • Move to the main page
  • Forums
  • English
  • General Discussion
  • Feedback

'; editor.focus(); editor.selection.collapse(true); editor.execCommand('mceInsertContent', false, html); api.close(); } }); } }); return { getMetadata: function () { return { name: 'youtube', url: 'www.pearlabyss.com' } } }; }); } function customUploadPlugin(attachFilePath, limitSize) { tinymce.PluginManager.add('customupload', function (editor) { editor.ui.registry.addButton('customupload', { icon: 'image', onAction: function () { var $fileInput = $(''); $('body').append($fileInput); $fileInput.trigger('click'); $fileInput.on('change', function () { _abyss.loading(true); if (limitSize <= this.files[0].size) { alert(_fileLimitErrorMessage); _abyss.loading(false); return; } var fileList = $(this).prop('files') || []; var fileCount = 0; for (var fileIndex = 0; fileIndex < fileList.length; fileIndex++) { var fileData = new FormData(); fileData.append('upload', fileList[fileIndex]); $.ajax({ async: false, type: 'POST', url: '/FileUpload/index?subpath=' + attachFilePath + '&responseType=json', contentType: false, processData: false, data: fileData, success: function (data) { fileCount++; if (data._resultCode == 0) { tinymce.execCommand('mceInsertContent', false, '[Feedback] Make Magical Seeds processable into Mysterious Seeds | Black Desert NA/EU (1)') } else { alert(!!data._resultMessage ? data._resultMessage : _fileErroMessage); } if (fileList.length === fileCount) { _abyss.loading(false); } }, error: function (err) { _abyss.loading(false); console.error(err); } }); } tinymce.execCommand('mceInsertNewLine'); }); }, }); return { getMetadata: function () { return { name: 'customupload', url: 'www.pearlabyss.com' } } }; }); } function dataURLtoFile(dataURL, filename, mimeType) { return ( fetch(dataURL).then(function (res) { return res.arrayBuffer(); }) .then(function (buf) { return new File([buf], filename, {type: mimeType});}) ); } function initCkeditor(id, attachFilePath) { if ($('#' + id).length <= 0) { return; }; var uploadLimitSizeValue = _fileLimitSize; $('div#' + id).remove(); youtubePlugin(); customUploadPlugin(attachFilePath, uploadLimitSizeValue); tinymce.init({ selector: '#' + id, mobile: { theme: 'mobile', plugins: 'image table link media youtube paste', toolbar: 'undo redo | formatselect | bold italic strikethrough forecolor backcolor fontsizeselect | alignleft aligncenter alignright alignjustify | link image youtube table', default_target_link: '_blank', media_dimensions: false, media_poster: false, relative_urls: false, remove_script_host: false, fontsize_formats: _font_format, images_upload_handler: function (blobInfo, success, failure) { _abyss.loading(true); if (uploadLimitSizeValue <= blobInfo.blob().size) { alert(_fileLimitErrorMessage); var $img = tinymce.dom.DomQuery(tinymce.activeEditor.getBody())[0].querySelector("img[src='" + blobInfo.blobUri() + "']"); $img && $img.remove(); _abyss.loading(false); return; } var xhr, formData; xhr = new XMLHttpRequest(); xhr.withCredentials = false; xhr.open('POST', '/FileUpload/index?subpath=' + attachFilePath + '&responseType=json'); xhr.onload = function () { var json; if (xhr.status != 200) { failure('HTTP Error: ' + xhr.status); _abyss.loading(false); return; } json = JSON.parse(xhr.responseText); if (!json || typeof json._value != 'string') { failure('Invalid JSON: ' + xhr.responseText); _abyss.loading(false); return; } success(json._value); setTimeout(function () { _abyss.loading(false); }, 1000 * 1); }; xhr.onerror = function (e) { _abyss.loading(false); } formData = new FormData(); formData.append('upload', blobInfo.blob(), blobInfo.filename()); xhr.send(formData); tinymce.execCommand('mceInsertNewLine'); }, file_picker_callback: function (callback, value, meta) { var fileInput = $(''); $('body').append(fileInput); fileInput.trigger('click'); fileInput.on('change', function (e) { var formData = new FormData(); formData.append('upload', $(this).prop('files')[0]); if (uploadLimitSizeValue > 0 && formData.get('upload').size/1024/1024 >= uploadLimitSizeValue) { alert(_fileLimitErrorMessage); return; } $.ajax({ type: 'POST', url: '/FileUpload/index?subpath=' + attachFilePath + '&responseType=json', contentType: false, processData: false, data: formData }) .done(function (data) { if (data._resultCode == 0) { callback(data._value); } else { alert(!!data._resultMessage ? data._resultMessage : _fileErroMessage); } }) }); }, setup: function (editor) { editor.on('paste', function (e) { e.preventDefault(); var content = ((e.originalEvent || e).clipboardData || window.clipboardData).getData('text/html') .replace(/font-(family|size):.*?;/g, '') .replace(/

/g, '') .replace(/id=\"([^"]*)\"|id=\'([^"]*)\'|class=\"([^"]*)\"|class=\'([^"]*)\'/g, '') .replace(//g, ''); editor.execCommand('mceInsertContent', false, content); }); }, invalid_elements: _getBlacklistElem(), valid_styles: { '*': _getWhitelistStyle() }, extended_valid_elements: _getWhitelistElem(), block_formats: _block_size }, height: 400, plugins: 'powerpaste image table link customupload media youtube paste', menubar: '', toolbar: 'undo redo | formatselect | bold italic strikethrough forecolor backcolor fontsizeselect | alignleft aligncenter alignright alignjustify | link customupload youtube table', default_target_link: '_blank', language: 'en', media_dimensions: false, media_poster: false, relative_urls: false, remove_script_host: false, object_resizing: ":not(table):not(iframe)", fontsize_formats: _font_format, image_title: true, maximumImageFileSize: _fileLimitSize, file_picker_callback: function (callback, value, meta) { var fileInput = $(''); $('body').append(fileInput); fileInput.trigger('click'); fileInput.on('change', function () { _abyss.loading(true); if (uploadLimitSizeValue <= this.files[0].size) { alert(_fileLimitErrorMessage); _abyss.loading(false); return; } var formData = new FormData(); var fileName = this.files[0].name; formData.append('upload', $(this).prop('files')[0]); $.ajax({ type: 'POST', url: '/FileUpload/index?subpath=' + attachFilePath + '&responseType=json', contentType: false, processData: false, data: formData }) .done(function (data) { if (data._resultCode == 0) { callback(data._value, {title: fileName}); } else { alert(!!data._resultMessage ? data._resultMessage : _fileErroMessage); } }) }); }, images_upload_handler: function (blobInfo, success, failure) { _abyss.loading(true); if (uploadLimitSizeValue <= blobInfo.blob().size) { alert(_fileLimitErrorMessage); var $img = tinymce.dom.DomQuery(tinymce.activeEditor.getBody())[0].querySelector("img[src='" + blobInfo.blobUri() + "']"); $img && $img.remove(); _abyss.loading(false); return; } var xhr, formData; xhr = new XMLHttpRequest(); xhr.withCredentials = false; xhr.open('POST', '/FileUpload/index?subpath=' + attachFilePath + '&responseType=json', false); xhr.onload = function () { var json; if (xhr.status != 200) { failure('HTTP Error: ' + xhr.status); _abyss.loading(false); return; } json = JSON.parse(xhr.responseText); if (!json || typeof json._value != 'string') { failure('Invalid JSON: ' + xhr.responseText); alert(!!json._resultMessage ? json._resultMessage : _fileErroMessage); _abyss.loading(false); return; } success(json._value); setTimeout(function () { _abyss.loading(false); }, 1000 * 1); }; xhr.onerror = function (e) { _abyss.loading(false); } formData = new FormData(); formData.append('upload', blobInfo.blob(), blobInfo.filename()); xhr.send(formData); tinymce.execCommand('mceInsertNewLine'); }, paste_preprocess: function (plugin, args) { args.content = args.content .replace(/font-(family|size):.*?;/g, '') .replace(//g, '') .replace(/id=\"([^"]*)\"|id=\'([^"]*)\'|class=\"([^"]*)\"|class=\'([^"]*)\'/g, '') .replace(//g, ''); }, powerpaste_word_import: "propmt", powerpaste_html_import: "propmt", powerpaste_allow_local_images: false, //powerpaste_block_drop: true, paste_data_images: true, invalid_elements: _getBlacklistElem(), valid_styles: { '*': _getWhitelistStyle() }, extended_valid_elements: _getWhitelistElem(), block_formats: _block_size }); }

#Suggestions

Make Magical Seeds processable into Mysterious Seeds

Nov 22, 2022, 10:21 (UTC)

831 3 5 1

Last Edit : Nov 22, 2022, 10:51 (UTC)

# 1

Title: Make Magical Seeds processable into Mysterious Seeds
Family Name:
Alteran

Region (NA/EU): EU

Suggestion/Comments: Shortage of fruits in the economy still remains unresolved I would like to propose that magical seeds of all kinds should be processable (i.e. thru 'Grinding' or 'Filtering' or any other suitable method) to produce mysterious seeds which would be used to produce fruits. I am not sure about the ratio, 1-1 would probably be too much, but I believe we could find a percentage chance that would hit the sweetspot. I want to hear the other players opinion on that.

Current farming workflow when maximizing for Blush Leaves is to breed all plants and sell excess to vendor, which I think is a waste of potential 'rare' resource that could be turned to balance the economy.

Last Edit : Nov 23, 2022, 18:53 (UTC)

# 2

I guess it'd be nice to be able to use magicals with mysterious seeds to make mysterious plants. A bigger concern that I have is that they recently 'buffed' mysterious plants and they're still not really worth using. The buff was too conservative and needs to be adjusted again. Hopefully not years from now...

Farming mastery when btw

ManaMafia

1 48

Lv 62

Mana_Mafia

Last Edit : Nov 24, 2022, 12:24 (UTC)

# 3

Magical Seeds they are completely outdated. They are reward but what is the reward? They don't stack and take 5 or 10 slots in the field.

It's stupid. Yes, it saves a bit of work for the workers and reduces the amount of fertilizer in the field slower but we do farming primarily for breeding, not for harvesting.

Senemedar

56 2073

Lv Private

BlindEagleEye

Reply

Submit Reply

Feedback

Share your feedback and suggestions to help us develop Black Desert.

Start New Topic

[Feedback] Make Magical Seeds processable into Mysterious Seeds | Black Desert NA/EU (2024)

FAQs

How do you get magical seeds in black desert? ›

Once you reach Artisan 1 in farming, you can start to plant Magical Seeds for profit. These are the highest grade of seeds, and can be obtained by breeding Speical (blue) grade seeds. Once a seed has been placed it will begin to grow. Exit the installation screen by pressing Esc and clicking yes.

How do you get the mysterious seed? ›

Mysterious Seed is a type of seed found in Spiritfarer. Stella can acquire it via fishing in any region(preferably at Everdoor), during any weather condition, but only after escorting at least four Spirits to the Everdoor.

What are magical seeds for? ›

Magical Seeds are consumed and provide specific boosts when the holder enters a Magical Field Effect. The different boosts are: Dark Crystal Cavern: boosts Special Defense and applies Magic Coat to the user. Rainbow Field: raises Special Attack and applies Healing Wish to the user.

How do you get magic seeds? ›

Magic seeds may be found rarely in bird's nests, which can be obtained randomly while Woodcutting or from Managing Miscellania.

How do I claim Black Desert for free? ›

Since Black Desert is free to play in some regions, if you already have the game but want to claim the in-game items, login the game first. From there, press ESC to bring up the in-game menu. Choose Adventurer Support, then click Redeem Coupon Code. Enter the 16-digit code and that's it!

Are secret seeds randomized in Terraria? ›

Secret seeds use unique world-generating mechanics that differ from normal seeds. Using a secret seed overrides the normal use of seeds as a source of randomness and two worlds created via the same secret seed will not necessarily be identical.

How do you get mysterious Pokemon? ›

The Mystery Box is a special item in Pokémon GO that temporarily causes the Mythical Pokémon Meltan to appear in the wild. You can obtain the Mystery Box by sending a Pokémon from Pokémon GO to Pokémon: Let's Go, Pikachu!, Pokémon: Let's Go, Eevee!, or Pokémon HOME.

How do you get DEKU seeds? ›

In Skyward Sword, Deku Seeds are used as ammunition. They can be found by defeating Deku Babas, rolling into Trees or using the Digging Mitts in soft Soil. Link can also buy ten Deku Seeds for 20 Rupees at the Gear Shop.

What are secret seeds? ›

Secret world seeds are seeds that have been discovered by the general community as easter eggs that generate worlds with unique features. They are different from regular seeds, as they can produce worlds with unique game mechanics.

Do magical crops drop seeds? ›

When a seed is fully grown, harvest it and you will get the following materials: one crop, 0-3 seeds of that crop, and may give one Magic Essence.

How do I get started with magical crops? ›

Getting Started (Farming Minerals)
  1. First, you will need to mine some Essence Ore, this ore will drop 1-5 weakMagic Essence when mined (you must use an iron or diamond pickaxe to sucessfully mine it). ...
  2. Then after you have some weak Magic Essence, you need to mine whatever material you want to be able to farm later.

How do you get seeds in mystical agriculture? ›

Seeds are crafted using an Infusion Altar and Infusion Pedestals. Placing the altar in the world will show you where to place the pedestals. The Infusion Altar placed in the world showing pedestal placement locations.

How do you get Anima seeds? ›

Anima seeds are a type of untradeable seed received from defeating the Hespori in the Farming Guild, and can only be planted in the anima patch within the intermediate tier of the Farming Guild.

Top Articles
Player's Guide - Archives of Nethys: Pathfinder 2nd Edition Database
Kineticist - Classes - Archives of Nethys: Pathfinder RPG Database
Epguides Succession
Grizzly Expiration Date 2023
What Ever Happened to H.T. Cushman Furniture?
NYC Drilled on Variant Response as Vaccine Limits Push State Appointments to Mid-April
Fifi's Boyfriend Crossword Clue
Anchor Martha MacCallum Talks Her 20-Year Journey With FOX News and How She Stays Grounded (EXCLUSIVE)
Gay Pnp Zoom Meetings
Dealer 360 Login Generac
Fintechzoommortgagecalculator.live Hours
Jacy Nittolo Ex Husband
Aly Raisman Nipple
Craigslist Tools Las Cruces Nm
Nyu Paralegal Program
Dcuo Exalted Style
Shore Lodge Webcam
Fd Photo Studio New York
Adams County 911 Live Incident
Perugino's Deli Menu
Peoplesoft Oracle Americold Login
Think Up Elar Level 5 Answer Key Pdf
Eddie Scozzare Salary
Abby's Caribbean Cafe
Funny Marco Birth Chart
Daggett Funeral Home Barryton Michigan
Zmanim 10977
Does Wanda Sykes Use A Cane
Theater X Orange Heights Florida
neither of the twins was arrested,传说中的800句记7000词
Why Larry the cat of 10 Downing Street wishes Starmer hadn’t won the election
What Auto Parts Stores Are Open
Franco Loja Net Worth
Facebook Marketplace Winnipeg
Marie Anne Thiebaud 2019
Ben Rickert Net Worth
Cavender's Boot City Lafayette Photos
Craigslistwesternmass
Denny's Ace Hardware Duluth Mn
Lmsyduycdmt
Alger Grade Ohm
Craigslist Lasalle County Il
Gelöst – Externe Festplatte kann nicht formatiert werden
2022 Basketball 247
Fgo Spirit Root
Transactions on Computational Social Systems - IEEE SMC
Summer Rae on WWE return: Royal Rumble is 'step in the right direction'
Best Asian Bb Cream For Oily Skin
Bitlife Tyrone's
Grayson County Craigslist
Welcome to the Newest Members of the Lawrenceville School Faculty
Pfcu Chestnut Street
Latest Posts
Article information

Author: Patricia Veum II

Last Updated:

Views: 5633

Rating: 4.3 / 5 (44 voted)

Reviews: 91% of readers found this page helpful

Author information

Name: Patricia Veum II

Birthday: 1994-12-16

Address: 2064 Little Summit, Goldieton, MS 97651-0862

Phone: +6873952696715

Job: Principal Officer

Hobby: Rafting, Cabaret, Candle making, Jigsaw puzzles, Inline skating, Magic, Graffiti

Introduction: My name is Patricia Veum II, I am a vast, combative, smiling, famous, inexpensive, zealous, sparkling person who loves writing and wants to share my knowledge and understanding with you.