28 | {card.name} 29 |
30 | { 31 | card.value ? ( 32 |
33 |
48 | {card.description} 49 |
50 |├── src
├── components
│ ├── AdComponent.astro
│ ├── Pagination.astro
│ ├── table
│ │ ├── Head.astro
│ │ ├── Cell.astro
│ │ └── Table.astro
│ ├── Search.astro
│ ├── Footer.jsx
│ ├── NestedList.astro
│ ├── Card.astro
│ ├── Accordion.astro
│ ├── Form.jsx
│ └── SearchModal.astro
├── assets
│ ├── img
│ │ ├── cooking.png
│ │ ├── credits.png
│ │ ├── logo-nms.png
│ │ ├── refining.png
│ │ ├── crafting-guide.png
│ │ └── logo.svg
│ └── css
│ │ ├── main.css
│ │ └── tabulator.css
├── env.d.ts
├── utils
│ ├── classNames.js
│ └── lookup.ts
├── pages
│ ├── feedback.astro
│ ├── fish
│ │ ├── [id].astro
│ │ └── [page].astro
│ ├── curiosities
│ │ ├── [id].astro
│ │ └── [page].astro
│ ├── cooking
│ │ ├── [id].astro
│ │ ├── index.astro
│ │ └── cards
│ │ │ └── index.astro
│ ├── raw
│ │ ├── [id].astro
│ │ └── [page].astro
│ ├── products
│ │ ├── [id].astro
│ │ └── [page].astro
│ ├── other
│ │ ├── [id].astro
│ │ └── [page].astro
│ ├── buildings
│ │ ├── [id].astro
│ │ └── [page].astro
│ ├── technology
│ │ ├── [id].astro
│ │ └── [page].astro
│ ├── search.json.ts
│ ├── calculator
│ │ └── [page].astro
│ ├── all-items
│ │ └── [page].astro
│ ├── crafting-guide
│ │ ├── index.astro
│ │ └── cards
│ │ │ └── index.astro
│ ├── refining
│ │ ├── index.astro
│ │ └── cards
│ │ │ └── index.astro
│ ├── index.astro
│ ├── privacy.astro
│ └── privacy-policy.astro
├── config.ts
├── data
│ ├── index.ts
│ ├── getFish.py
│ └── Trade.json
└── layouts
│ ├── Layout.astro
│ ├── Sidebar.jsx
│ └── Page.astro
├── public
├── ads.txt
├── images
│ ├── icon.png
│ ├── cooker.webp
│ ├── logo-nms.png
│ ├── refiner.webp
│ ├── calculator.webp
│ ├── crafting.webp
│ ├── logo-nms.webp
│ ├── resources.png
│ └── backgrounds
│ │ ├── bg1.webp
│ │ ├── bg2.webp
│ │ ├── bg3.webp
│ │ ├── bg4.webp
│ │ ├── bg5.webp
│ │ ├── bg6.webp
│ │ ├── bg7.webp
│ │ ├── bg8.webp
│ │ ├── bg9.webp
│ │ ├── bg10.webp
│ │ ├── bg11.webp
│ │ ├── bg12.webp
│ │ └── bg13.webp
├── fonts
│ ├── FuturaProBook.woff
│ └── FuturaProBook.woff2
└── favicon.svg
├── .vscode
└── extensions.json
├── tsconfig.json
├── .gitignore
├── astro.config.mjs
├── tailwind.config.cjs
├── package.json
├── vercel.json
└── README.md
/src/components/AdComponent.astro:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/public/ads.txt:
--------------------------------------------------------------------------------
1 | google.com, pub-8524094599848175, DIRECT, f08c47fec0942fa0
--------------------------------------------------------------------------------
/public/images/icon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bradhave94/nms/HEAD/public/images/icon.png
--------------------------------------------------------------------------------
/public/images/cooker.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bradhave94/nms/HEAD/public/images/cooker.webp
--------------------------------------------------------------------------------
/public/images/logo-nms.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bradhave94/nms/HEAD/public/images/logo-nms.png
--------------------------------------------------------------------------------
/public/images/refiner.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bradhave94/nms/HEAD/public/images/refiner.webp
--------------------------------------------------------------------------------
/src/assets/img/cooking.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bradhave94/nms/HEAD/src/assets/img/cooking.png
--------------------------------------------------------------------------------
/src/assets/img/credits.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bradhave94/nms/HEAD/src/assets/img/credits.png
--------------------------------------------------------------------------------
/public/images/calculator.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bradhave94/nms/HEAD/public/images/calculator.webp
--------------------------------------------------------------------------------
/public/images/crafting.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bradhave94/nms/HEAD/public/images/crafting.webp
--------------------------------------------------------------------------------
/public/images/logo-nms.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bradhave94/nms/HEAD/public/images/logo-nms.webp
--------------------------------------------------------------------------------
/public/images/resources.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bradhave94/nms/HEAD/public/images/resources.png
--------------------------------------------------------------------------------
/src/assets/img/logo-nms.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bradhave94/nms/HEAD/src/assets/img/logo-nms.png
--------------------------------------------------------------------------------
/src/assets/img/refining.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bradhave94/nms/HEAD/src/assets/img/refining.png
--------------------------------------------------------------------------------
/src/env.d.ts:
--------------------------------------------------------------------------------
1 | ///
Choose an item below to start
22 |
33 |
48 | {card.description} 49 |
50 |76 | Refiners | Crafting | Cooking 77 |
78 |This website uses:
13 |These services may use cookies and collect anonymous usage data. For more information about how these services handle your data, please refer to:
18 |This website uses cookies from Google Analytics and Google AdSense. You can control or delete cookies through your browser settings.
27 |We may update this privacy policy from time to time. We will notify you of any changes by posting the new policy on this page.
40 |Last updated: {new Date().toLocaleDateString()}
41 |This site uses Google AdSense to display advertisements. These ads:
46 |You can learn more about how Google uses data when you use our site by visiting Google's Privacy & Terms site.
52 |This is a fan-made website. No Man's Sky™ and all related assets are trademarks 56 | of Hello Games. This site is not affiliated with or endorsed by Hello Games.
57 |This Privacy Policy describes the policies and procedures of No Man's Sky Recipes ("we," "our," or "us") regarding the collection, use, and disclosure of information we receive from users of our website [nomansskyrecipes.com] (the "Site") and any associated services.
16 | 17 |Information Collection and Use We do not collect or store any personal information from our users unless explicitly provided by the user through the contact form on our Site. The information we collect through the contact form may include the user's name, email address, and any additional message or inquiries they provide. We use this information solely for the purpose of responding to the user's inquiries and providing customer support.
18 | 19 |Third-Party Services and Ads We may use third-party services, such as Google AdSense, to display advertisements on our Site. These third-party service providers may collect certain information, such as your IP address, to provide targeted ads based on your interests. These providers have their own privacy policies addressing how they collect, use, and disclose such information. We are not responsible for the privacy practices of these third parties.
20 | 21 |Disclosure of Personal Information We do not sell, trade, or otherwise transfer personal information to third parties. However, we may disclose personal information in the following circumstances:
22 | 23 |With the user's consent When required by law or to protect our rights In the event of a merger, acquisition, or sale of all or a portion of our assets Security We are committed to protecting the security of your personal information and take reasonable measures to prevent unauthorized access, disclosure, or alteration. However, please be aware that no method of transmission or storage over the Internet is completely secure, and therefore, we cannot guarantee its absolute security.
24 | 25 |Links to Other Sites Our Site may contain links to other websites. Please note that we have no control over the content, privacy policies, or practices of these external sites. We strongly advise you to review the privacy policy of any third-party sites you visit.
26 | 27 |Children's Privacy Our Site is not directed to children under the age of 13, and we do not knowingly collect personal information from children. If we discover that we have collected personal information from a child under 13, we will promptly delete it from our records.
28 | 29 |GDPR Compliance If you are located in the European Economic Area (EEA), you have certain rights under the General Data Protection Regulation (GDPR) regarding the personal information we collect and process. These rights include:
30 | 31 |The right to access, update, or delete your personal information The right to restrict or object to the processing of your personal information The right to data portability The right to withdraw consent at any time, where applicable To exercise any of these rights, please contact us using the information provided at the end of this Privacy Policy.
32 | 33 |Changes to This Privacy Policy This Privacy Policy is effective as of October 19, 2023 and will remain in effect except with respect to any changes in its provisions in the future, which will be in effect immediately after being posted on this page.
34 | 35 |Contact Us If you have any questions about this Privacy Policy or would like to exercise your rights under GDPR, please contact us at https://nomansskyrecipes.com/feedback.
36 |105 | Let us know if you have any ideas or suggestions on how to improve our site. 106 |
107 |
148 |
136 |
167 | {item.BaseValueUnits}
168 |
{item.Description}
177 | 178 | {showQuantityInput && ( 179 |