forked from R74nCom/sandboxels
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathchangelog.html
1474 lines (1416 loc) · 58.8 KB
/
changelog.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Sandboxels Changelog</title>
<meta name="description" content="Latest updates to the free falling-sand browser game.">
<meta name="keywords" content="falling sand, elements, pixel art, simulator, powder">
<meta name="author" content="R74n">
<meta name="copyright" content="R74n">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="robots" content="all">
<!--Favicons-->
<link rel="apple-touch-icon" sizes="180x180" href="icons/apple-touch-icon.png?v=2">
<link rel="icon" type="image/png" sizes="32x32" href="icons/favicon-32x32.png?v=2">
<link rel="icon" type="image/png" sizes="16x16" href="icons/favicon-16x16.png?v=2">
<link rel="manifest" href="manifest.json">
<link rel="mask-icon" href="icons/safari-pinned-tab.svg?v=2" color="#2167ff">
<link rel="shortcut icon" href="icons/favicon.ico?v=2">
<meta name="msapplication-TileColor" content="#e6d577">
<meta name="theme-color" content="#000000">
<!--OpenGraph-->
<meta property="og:locale" content="en_US">
<meta property="og:type" content="website">
<meta property="og:title" content="Sandboxels Changelog">
<meta property="og:description" content="Latest updates to the free falling-sand browser game.">
<meta property="og:url" content="https://sandboxels.r74n.com">
<meta property="og:site_name" content="Sandboxels">
<meta property="og:image" content="https://sandboxels.r74n.com/icons/wallpaper.png">
<meta property="og:image:width" content="1980">
<meta property="og:image:height" content="971">
<meta property="og:image:type" content="image/png">
<meta property="og:image:alt" content="A rainforest made in Sandboxels">
<!--Twitter-->
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:description" content="Latest updates to the free falling-sand browser game.">
<meta name="twitter:title" content="Sandboxels Changelog">
<meta name="twitter:site:id" content="1436857621827530753">
<meta name="twitter:image" content="https://sandboxels.r74n.com/icons/card.png">
<meta name="twitter:image:alt" content="A rainforest made in Sandboxels">
<meta name="twitter:creator:id" content="1436857621827530753">
<link rel="stylesheet" type="text/css" href="style.css?nocache=3">
<style>
/* on mobile, make h1 fit on one line */
@media only screen and (max-width: 800px) {
h1 {
font-size: 1em;
}
}
#changelog {
font-family: Arial, Helvetica, sans-serif
}
h2 {
margin-bottom: 5px;
display: inline-block;
}
ul {
margin: 0;
padding: 0;
list-style-type: none;
}
li {
margin-left: 20px;
margin-top: 0;
margin-bottom: 0;
padding: 0;
}
li.ad::before {
content: "+";
color: #00ff00;
}
li.ch::before {
content: "~";
color: #ffff00;
}
li.rm::before {
content: "-";
color: #ff0000;
}
li.update-section {
font-size: 1.25em;
margin-left: 10px;
}
#intro {
font-family: Arial, Helvetica, sans-serif;
}
</style>
</head>
<body>
<h1><a href="https://sandboxels.R74n.com" class="backbutton"><</a> Sandboxels Changelog</h1>
</ul>
<div id="changelog">
<div id="intro">
<p>Below are all of the updates to Sandboxels.</p>
<p>Suggest new additions on our <strong><a href="https://link.r74n.com/sandboxels-feedback" target="_blank">Feedback Form</a></strong>.</p>
<p>Join our <strong><a href="https://link.r74n.com/discord" target="_blank">Discord</a></strong> to be notified when new updates drop.</p>
<p>The original <a href="https://sandboxels.r74n.com/changelog.txt">plain text version</a> of this is still maintained.</p>
</div>
<h2 id="1.8.5">[Version 1.8.5 - July 27, 2023]</h2>
<ul>
<li>+ Drag tool</li>
<li>+ Tree color variety (8 variants!)</li>
<li>~ Mobile UI improvements</li>
<li>+ Warp (Special)</li>
<li>+ Crumb (Hidden, from broken foods)</li>
<li>+ Skin (Solid)</li>
<li>+ Hair (Hidden)</li>
<li>[States]</li>
<li>+ Soda Ice (Hidden)</li>
<li>+ Bleach Ice (Hidden)</li>
<li>+ Frozen Vinegar (Hidden)</li>
<li>+ Amber (Hidden, frozen Sap)</li>
<li>+ Perfume (Hidden, liquid Fragrance)</li>
<li>+ Liquid Stench (Hidden)</li>
<li>[Changes]</li>
<li>+ Molten Dirt can solidify into some Rock</li>
<li>+ Tools have descriptions on info page</li>
<li>+ Oil dirties Water</li>
<li>+ Humans will panic and run when burning</li>
<li>+ Rad Shards and Molten Rad Glass can produce radiation</li>
<li>+ Light and Laser retain color when liquified</li>
<li>+ Slag can be formed with Dirt</li>
<li>+ Slag can break into Gravel</li>
<li>+ Corn breaks into Flour</li>
<li>+ Mushrooms can release Poison when broken</li>
<li>+ Poison and Antidote can wet soil</li>
<li>+ Juice can wet Flour</li>
<li>+ Blood can oxidize Iron and Copper</li>
<li>+ Fallout will infect Blood</li>
<li>+ Birds turn to white meat when cooked</li>
<li>+ Birds smash into Blood</li>
<li>+ Cacti can be killed by Vinegar, Bleach, Baking Soda, and Alcohol</li>
<li>+ Humans can be killed by Poison and Cyanide</li>
<li>+ Cells can be killed by Plague, Soap, Mercury, Chlorine, and Cyanide</li>
<li>+ Dioxin can kill Plants, Grass, Vines, Saplings, and Cacti</li>
<li>+ Vinegar can kill Frogs slowly</li>
<li>+ Vinegar can kill Grass</li>
<li>+ Algae dies at hot and cold temperatures</li>
<li>+ Dust will burn at high temperatures</li>
<li>+ Melted Wax will break down at high temperatures</li>
<li>+ Uranium conducts electricity</li>
<li>+ Unburn tool can put out Embers and Torches</li>
<li>+ Bless turns Static to Rainbow</li>
<li>+ Static conducts electricity</li>
<li>+ Grapes can turn Water into Juice</li>
<li>+ Primordial Soup can wet Clay Soil</li>
<li>+ Hydrogen produces heat during fusion</li>
<li>+ Helium, Hydrogen, and Mercury Gas glow when electrified</li>
<li>+ Cactus and Liquid Light random events</li>
<li>+ Cement can be made with Slaked Lime</li>
<li>~ Recolored Slaked Lime</li>
<li>~ Placing Petals or Mushroom Caps now picks a random color</li>
<li>~ Unhid Petal</li>
<li>~ Hid Root</li>
<li>~ Moved Bamboo to Solids</li>
<li>~ Moved Steel</li>
<li>~ Moved Melted Cheese, Butter, and Chocolate to States</li>
<li>~ Moved Liquid Hydrogen, Helium, and Neon to States</li>
<li>~ States category always appears last if unhidden</li>
<li>~ Humans rot more randomly</li>
<li>~ Bamboo Plant grows faster</li>
<li>~ Worms no longer break Eggs</li>
<li>~ Strange Matter can no longer travel through indestructible things</li>
<li>~ Strange Matter can no longer destroy Void</li>
<li>~ Tweaked Molten Uranium radiation rate</li>
<li>[Fixes]</li>
<li>~ Fixed: Alt-Tab locks Alt key</li>
<li>~ Fixed: Cacti break into Sap</li>
<li>~ Fixed: Cream deletes infinite Soda and Juice</li>
<li>~ Fixed: Null in info page error (e.g. tea)</li>
<li>~ Fixed: Unknown element in info page error (e.g. salt)</li>
<li>~ Fixed: Reactions, related, and aliases don't show up in tool info pages</li>
<li>~ Capitalization fixes</li>
<li>[Technical]</li>
<li>+ Element properties onSelect, onMouseUp, perTick, singleColor</li>
<li>~ Element property fireElement can accept null</li>
</ul>
<h2 id="1.8.4">[Version 1.8.4 - July 11, 2023]</h2>
<ul>
<li>+ Image placing<ul>
<li>+ Image tool in Special</li>
<li>+ Select any image from your computer</li>
<li>+ Place it on the canvas at any scale</li>
<li>+ Choose its element or disable smoothing in Settings</li>
<li>+ Burn it, blow it up, or make it a powder!</li>
<li>+ Paste or Drag-and-Drop images!</li></ul></li>
<li>[Stay tuned for bigger updates in the coming months!]</li>
<li>[Bug Fixes]</li>
<li>~ Fixed: Old browsers that don't support ECMAScript 2016 crash</li>
</ul>
<h2 id="1.8.3">[Version 1.8.3 - May 16, 2023 - Deserted Update]</h2>
<ul>
<li>+ Cactus</li>
<li>+ Fancy Changelog and Controls pages</li>
<li>+ Toggle Burning setting</li>
<li>+ Broth Ice (Hidden)</li>
<li>+ Rad Shard (Hidden)</li>
<li>+ Linked to our <a href="https://sandboxels.wiki.gg/" target="_blank" title="Official Sandboxels Wiki - wiki.gg">official Sandboxels Wiki</a> on wiki.gg</li>
<li>[Changes]</li>
<li>+ Cacti and Charcoal now spawn in Desert world gen</li>
<li>+ Petals will fall slowly if detached from flower</li>
<li>+ Pointer color can be customized</li>
<li>+ Bless grows Grass on Dirt</li>
<li>+ Frogs can somewhat swim</li>
<li>+ Pool Water can kill Frogs and Seeds</li>
<li>+ Pool Water will break down Blood and Poison</li>
<li>+ Cream releases Steam when boiling</li>
<li>+ Cream can wet soil</li>
<li>+ Popcorn pops when made from Corn</li>
<li>+ Melted Butter stains solids</li>
<li>+ Mushroom parts break into Mycelium</li>
<li>+ Eggs melting leaves behind Sulfur Gas</li>
<li>+ Eggs won't break when dropped on soft material</li>
<li>+ Bless turns Molten Lead to Molten Gold</li>
<li>+ Unique fire colors for Molten Copper, Lead, Zinc, Salt, and Calcium</li>
<li>+ Broth can be made from Bones and Mushroom parts</li>
<li>+ Unique Broth color for soups with Flowers, Potato, Rotten Meat, Cheese, Beans, Wheat, Algae</li>
<li>+ Milk and Cream can be churned to Butter</li>
<li>+ Rats can eat Eggnog</li>
<li>+ Fish eat Yolk and Cell</li>
<li>+ Ants can drink Juice</li>
<li>+ Soap kills bugs</li>
<li>+ Ozone kills Plant</li>
<li>+ Charcoal, Roots, Hyphae, and Amalgam conduct electricity</li>
<li>+ Rad Glass has a texture when placed manually</li>
<li>+ Rad Glass can be made with Fallout</li>
<li>+ LEDs melt into Gallium</li>
<li>+ Molten Calcium can burn</li>
<li>+ Salt alias 'Sodium Chloride'</li>
<li>+ Anesthesia alias 'Nitrous Oxide'</li>
<li>+ Anesthesia turns Clouds to Acid Clouds</li>
<li>+ Anesthesia depletes Ozone</li>
<li>+ Sulfur alias 'Sulphur'</li>
<li>+ TNT alias 'Trinitrotoluene'</li>
<li>+ DNA alias 'Deoxyribonucleic Acid'</li>
<li>+ DNA from Cancer appears corrupted</li>
<li>+ Potatoes can explode when radiated</li>
<li>+ Cellulose freezes into Paper</li>
<li>+ Bees can be crushed into Honey</li>
<li>+ Bamboo and Vines can convert Carbon Dioxide to Oxygen</li>
<li>+ Flour can be wet by Pool Water, Milk, Cream, Broth, Soda, Tea, Blood, Antibody, and Infection</li>
<li>+ Slag can be made with Smog, Pyrocumulus, Dioxin, and Poison Gas</li>
<li>+ Cream changes color when mixed with Milk variant ingredients</li>
<li>+ Radiation affects Aluminum, Pool Water, Soda, Broth, and Tea</li>
<li>+ Pistils can be broken</li>
<li>+ Sugar and Candy dissolve in Soda</li>
<li>+ Bleach and Yeast reaction generates heat</li>
<li>+ Bleach and Soap reaction</li>
<li>+ Bleach breaks down Antidote</li>
<li>+ Sponge creates Bubbles when absorbing Soap</li>
<li>~ Potatoes, Straw, Wheat, and Worms burn slower</li>
<li>~ Sap boils at a lower point</li>
<li>~ Strange Matter is now a liquid</li>
<li>~ Bless turns Soda into Seltzer</li>
<li>~ Cellulose burns less</li>
<li>~ Recolored Frozen Meat</li>
<li>~ Adjusted Sulfur Gas density</li>
<li>~ Adjusted Molten Gallium density</li>
<li>[Bug Fixes]</li>
<li>~ Fixed: Grape Juice and Potato Juice turns yellow when frozen</li>
<li>~ Fixed: Color-customizable elements don't show selector if hidden</li>
<li>~ Fixed: Foam created by other foam takes air temperature</li>
<li>[Technical]</li>
<li>+ Element property glow for gas effect (true/false)</li>
<li>+ LIGHTWEIGHT behavior preset</li>
<li>+ Reaction properties burning1 and burning2 requirement (true/false)</li>
<li>~ Seeds element now uses eLists.SEEDS</li>
</ul>
<h2 id="1.8.2">[Version 1.8.2 - May 12, 2023 - Very Necessary Update]</h2>
<ul>
<li>+ Lettuce</li>
<li>+ Liquid Light at absolute zero (Hidden)</li>
<li>+ Ice Cream (Frozen Milk)</li>
<li>+ Baked Potato (Hidden)</li>
<li>+ Bricks and Glass have a texture when placed</li>
<li>+ Clay Shard</li>
<li>+ Frozen Fish (Hidden, 25% chance)</li>
<li>~ Smash is now located on the toolbar</li>
<li>+ Press R to reset scene</li>
<li>+ Toggle buttons in Settings</li>
<li>+ Fancy Textures setting</li>
<li>+ Default View setting for mobile</li>
<li>+ Air Temp, Air Density, and Abs Zero settings</li>
<li>+ Mushrooms world gen type</li>
<li>[Changes]</li>
<li>~ Liquid Helium now has new superfluid behavior</li>
<li>~ Burning now stops below 0°C</li>
<li>~ Porcelain unhidden in Solids</li>
<li>~ Porcelain won't mix unless Shift is held</li>
<li>~ Optimized and buffed Strange Matter</li>
<li>+ Strange Matter ignores Fire and Smoke, can be destroyed by Antimatter</li>
<li>+ Bless warms pixels below -200°C</li>
<li>+ Humans will try to regulate their body temperature</li>
<li>+ Humans can eat food</li>
<li>+ Bones and Dead Plants can turn into fossil fuels under right conditions</li>
<li>+ Charcoal can turn into Diamonds under right conditions</li>
<li>+ Sugar and Milk can dissolve in Tea</li>
<li>+ Mixing Cement will reset the time until solidification</li>
<li>+ Termites can dig through soil</li>
<li>+ Potatoes can fall to the side</li>
<li>+ Potatoes break into Juice</li>
<li>+ Borax and Glue makes Slime</li>
<li>+ Incense gives off Smoke when burning</li>
<li>+ Herbs give off Fragrance when burnt</li>
<li>+ Flying Bugs and Birds can be crushed by falling Rocks</li>
<li>+ Fish can eat Broth, Slugs, Herbs, Lettuce, Dead Plants, Lichen, Yeast, Yogurt, and Tea</li>
<li>+ Snails, Algae, Gravel, and Charcoal can clean Broth and Tea</li>
<li>+ Worms can break down Lichen</li>
<li>+ Worms can eat Yolk</li>
<li>+ Gingerbread can be made with Flour and Sap or Caramel</li>
<li>+ Infection, Antibody, and Vaccine will wet soil</li>
<li>+ Radiation affects Milk variants</li>
<li>+ Malware messes with more machines</li>
<li>+ Copper Sulfate can be used as pesticide</li>
<li>+ Bubbles and Foam remove Stench</li>
<li>+ Bless can convert Lead to Gold</li>
<li>+ Tea can be made from Wheat</li>
<li>+ Uncharge tool converts Protons to Neutrons</li>
<li>+ Uncharge tool deletes Electric</li>
<li>+ Unburn tool converts Plasma to Smoke</li>
<li>+ <a href="https://github.com/R74nCom/sandboxels/" target="_blank">GitHub</a> linked in Mod Manager</li>
<li>~ Herbs burn slower</li>
<li>~ Tweaked Rad Glass color</li>
<li>~ Tweaked Dough color</li>
<li>~ Tweaked Lookup tool color to be like Glass</li>
<li>~ Pick, Mix, Shock, Mushroom Spore, Iron, and Gray Goo now have dark text</li>
<li>~ Settings menu is taller</li>
<li>~ Reset warning no longer appears if scene is empty</li>
<li>~ Ember cools into Ash</li>
<li>~ Firework Ember cools into Carbon Dioxide</li>
<li>~ Acid ignores Hydrogen</li>
<li>~ Renamed Nitroglycerin to Nitro</li>
<li>+ Frozen Nitro (Hidden)</li>
<li>+ Cream (Hidden)</li>
<li>[Bug Fixes]</li>
<li>~ Fixed: Background color setting input not syncing after refresh</li>
<li>~ Fixed: Pixels from Spout don't inherit temperature</li>
<li>~ Fixed: Stats bar makes GUI jumpy on mobile</li>
<li>~ Fixed: Sponge doesn't conduct heat</li>
<li>~ Fixed: Flies no longer electrocute</li>
<li>~ Fixed: Sun heat transfer dependent on phase</li>
<li>~ Fixed: Neutrons/Protons/Blessing Strange Matter can make ghost pixels</li>
<li>[Technical]</li>
<li>+ colorPattern and colorKey element properties (see Brick)</li>
<li>+ SUPERFLUID behavior preset</li>
<li>+ Absolute Zero is now controlled with global variable absoluteZero</li>
<li>+ fireElement element property accepts an array of elements</li>
<li>+ breakInto element property accepts null values</li>
<li>+ Uncharge tool supports reactions</li>
<li>+ stateLowColorMultiplier element attribute for Ice Cream</li>
<li>+ darkText element attribute for buttons (true/false)</li>
</ul>
<h2 id="1.8.1">[Version 1.8.1 - April 14, 2023 - Striking Detail]</h2>
<ul>
<li>+ Lightning (!!!)</li>
<li>+ Bless</li>
<li>+ Thunder Cloud</li>
<li>+ God Ray</li>
<li>+ Heat Ray</li>
<li>+ Rotten Cheese (Hidden)</li>
<li>+ Herb</li>
<li>+ Tea (Hidden)</li>
<li>+ Rime (Hidden)</li>
<li>+ Frozen Worm (Hidden)</li>
<li>+ Frozen Ink (Hidden)</li>
<li>+ Poison Ice (Hidden)</li>
<li>+ Rain world gen type</li>
<li>+ Changelog notification after new update</li>
<li>+ Version number shown below game</li>
<li>~ Improved load times</li>
<li>[Changes]</li>
<li>~ Reworked Vines</li>
<li>+ Vines hang from ceilings and walls</li>
<li>+ Vines spread naturally sideways, down, and on walls</li>
<li>+ Frogs can absorb harmful pollutants through their skin (Educational!)</li>
<li>+ Sun brown dwarf stage</li>
<li>+ Mercury can conduct electricity</li>
<li>+ Plant, Grass, and Vine break into Dead Plant</li>
<li>+ Insects break into Dead Bugs</li>
<li>+ Borax can kill insects</li>
<li>+ Ants, Frogs, Fish, and Birds can eat Dead Bugs</li>
<li>+ Ants and Flies can eat Cheese</li>
<li>+ Birds and Rats can eat Lichen</li>
<li>+ Fish can eat Tadpoles</li>
<li>+ Fish and Tadpoles can swim in Seltzer and Pool Water</li>
<li>+ Radiation can make Frogs young again</li>
<li>+ Worms can compost Dead Bugs</li>
<li>+ Worms can break down Mudstone, Permafrost, and Packed Sand</li>
<li>+ Worms can eat Sawdust, Tinder, Dust, and Rotten Meat</li>
<li>+ Worms can break down Eggs slowly</li>
<li>+ Eggs will die when frozen</li>
<li>+ Rats can eat Gingerbread, Yogurt, and Beans</li>
<li>+ Ammonia can kill Rats</li>
<li>+ Plants absorb Carbon Dioxide from Seltzer</li>
<li>+ Plants can clean Smog</li>
<li>+ Ice Nine can convert Rad Steam</li>
<li>+ Rad Steam can radiate Glass</li>
<li>+ Stench can be burned away by Fire</li>
<li>+ Soap cleans Smog and Stench</li>
<li>+ Soap dissolves in Water</li>
<li>+ Steam is a very bad electrical conductor</li>
<li>+ Juice can wet soils</li>
<li>+ Pool Water, Blood, Soda, and Milk can wet Clay Soil</li>
<li>+ Bubble, Steam, Foam, Acid, Primordial Soup, Vaccine, and Antidote can clean stains</li>
<li>+ Malware can damage Wires</li>
<li>+ Cancer can damage Plant</li>
<li>+ Cancer can spread to Bones</li>
<li>+ Bone Marrow can freeze and be poisoned</li>
<li>+ AlGa and Water reaction</li>
<li>+ Stink Bugs can be radiated</li>
<li>+ Info page shows decimal points if density is low</li>
<li>+ New random event element choices</li>
<li>+ More Bleach reactions</li>
<li>+ Neutral Acid can vaporize</li>
<li>+ Vinegar can kill Mushrooms and Pollen</li>
<li>+ Poison, Bleach, Seltzer, and Pool Water can kill Pollen</li>
<li>~ Fireflies will kill Frogs if eaten</li>
<li>~ Recolored Mycelium</li>
<li>~ Unhid Mycelium</li>
<li>~ Hid Positron</li>
<li>~ Moved Worm apart from insects</li>
<li>~ Moved Unpaint to Special</li>
<li>~ Flies no longer eat living plants</li>
<li>~ Worms no longer decompose growing plants</li>
<li>~ EMP Bomb is no longer limited to cursor size 1</li>
<li>~ Smog condensates into Dirty Water</li>
<li>~ Lowered Poison Gas condensation point</li>
<li>~ Acid will no longer destroy Chlorine</li>
<li>~ Cyanide is now a liquid at room temperature</li>
<li>~ Hid Cyanide</li>
<li>+ Cyanide Gas, Cyanide Ice (Hidden)</li>
<li>+ Neon Ice (Hidden)</li>
<li>+ Ball recipe</li>
<li>+ Rocket recipe</li>
<li>+ Armageddon recipe</li>
<li>+ Secret rare Ball Lightning</li>
<li>[Bug Fixes]</li>
<li>~ Fixed: Hardness does not resist explosion damage</li>
<li>~ Fixed: E button (Element Select) doesn't change active category</li>
<li>~ Fixed: Vines support themselves mid-air</li>
<li>~ Fixed: Grapes break into yellow Juice</li>
<li>~ Fixed: Game takes long to load on slow connections</li>
<li>~ Fixed: Cursor box becomes thicker after drawing line</li>
<li>~ Fixed: Flies make trees grow out of control</li>
<li>~ Fixed: Dough and batter eat each other when mixing</li>
<li>~ Fixed: Tadpoles, Slugs, Snails, Lichen, Dead Bugs, and Pollen drink all Pool Water</li>
<li>~ Fixed: Roots turn Pool Water into Fiber</li>
<li>~ Fixed: Cooldown not working when maximum cursor size is 1</li>
<li>~ Fixed: Worms turn Plant and Evergreen to Roots</li>
<li>[Technical]</li>
<li>~ Optimized gas rendering</li>
<li>~ Optimized fire somewhat</li>
<li>+ SP behavior cell now works with "ignore" element property</li>
<li>+ extraTempHigh and extraTempLow element properties (see Steam)</li>
<li>+ canPlace element property, for tools that can also be placed</li>
</ul>
<h2 id="1.8">[Version 1.8 - March 17, 2023 - Cooking Update]</h2>
<ul>
<li>+ Updated Donator list</li>
<li>+ Butter</li>
<li>+ Setting to disable reset warnings</li>
<li>+ EWall, conductive wall</li>
<li>+ Rock Wall</li>
<li>+ Sodium Gas</li>
<li>[Dough and Batter]</li>
<li>+ Batter, made from Flour and Yolk (Hidden)</li>
<li>+ Can be mixed with any food to create a unique dough/batter</li>
<li>+ Baked Batter (Hidden)</li>
<li>[Changes]</li>
<li>+ Bones can break into Bone Marrow</li>
<li>+ Acid dissolves Rocks into Sand</li>
<li>+ Pyrocumulus forms in Rad Clouds</li>
<li>+ Poison can kill Tree Branches</li>
<li>+ Different cheese colors from milk variants</li>
<li>+ Bleach and Yeast reaction</li>
<li>~ Plasma no longer charged by default</li>
<li>~ Sun, Stained Glass, Wires, Flash, and Explosions won't mix unless Shift is held</li>
<li>~ Unhid Yolk</li>
<li>~ Hid Cellulose</li>
<li>~ Reordered Food category</li>
<li>~ Tweaked Flour color</li>
<li>~ Sodium has a bright yellow flame</li>
<li>~ Sulfur Gas burns quickly</li>
<li>~ Poison can kill Mushrooms</li>
<li>~ Oxygen no longer flammable, but can be destroyed by fire</li>
<li>~ Hydrogen and Oxygen now need heat to combine</li>
<li>~ Milk from Udders comes out warm</li>
<li>- Removed Controls button as it is no longer needed</li>
<li>+ Added link to <a href="https://www.reddit.com/r/sandboxels" target="_blank">Reddit</a></li>
<li>[Bug Fixes]</li>
<li>~ Fixed: Heating trees causes odd growth patterns</li>
<li>~ Fixed: Sodium freezing point too low</li>
<li>~ Fixed: Molten Sodium missing reactions</li>
<li>~ Fixed: Melted Wax default temperature too low</li>
<li>~ Fixed: Inaccurate Mercury gas density</li>
<li>~ Fixed: Humans superconductive</li>
<li>~ Fixed: Canvas overflows on the right on mobile</li>
<li>[Technical]</li>
<li>+ onMix element attribute function(pixel1,pixel2)</li>
<li>+ isFood element attribute for Dough/Batter mixing</li>
<li>+ stateHighColorMultiplier element attribute for Batter</li>
</ul>
<h2 id="1.7.1">[Version 1.7.1 - January 8, 2023]</h2>
<ul>
<li>+ Walls and Glass aren't affected by Mix unless holding Shift</li>
<li>+ Beans</li>
<li>+ Sodium Acetate can melt</li>
<li>~ Popcorn hidden ;)</li>
</ul>
<h2 id="1.7">[Version 1.7 - December 15, 2022 - Anniversary Update]</h2>
<ul>
<li>+ Confetti</li>
<li>+ Party Popper</li>
<li>+ Balloon</li>
<li>+ Evergreen Trees</li>
<li>+ Pinecone, sapling equivalent</li>
<li>+ Evergreen (Hidden)</li>
<li>+ Gingerbread, a sturdy building material</li>
<li>+ Slush, made when snow mixes with water</li>
<li>+ Snow world gen type</li>
<li>+ Taiga world gen type</li>
<li>+ Tide Pool world gen type</li>
<li>+ New party-themed random events</li>
<li>+ Molten Ash</li>
<li>+ AlGa alloy (Hidden)</li>
<li>+ Eggnog (Hidden)</li>
<li>+ Pilk (Hidden)</li>
<li>+ Supporters list below game, donate to be added for life!</li>
<li>[Changes]</li>
<li>~ Snow more resilient to heat</li>
<li>~ Tweaked Ice color</li>
<li>~ Improved world gen for: Flower Field, Wheat Field, Forest, Jungle, Ocean</li>
<li>~ Dyanmite must now be triggered to explode</li>
<li>~ Plague now dissipates over time</li>
<li>~ Plague now dies at high temperatures</li>
<li>+ Snails and Slugs can now eat Dead Plant</li>
<li>+ Rats killed by Soap</li>
<li>+ Soap can damage Cancer</li>
<li>+ Cancer dirties Water</li>
<li>+ Cancer can now be frozen</li>
<li>+ Roots can freeze to death</li>
<li>+ Milk and variants can wet Dirt and Sand</li>
<li>+ Wet Sand can freeze</li>
<li>+ Cheerful Mode for when tragedy hits</li>
<li>- Removed Yolk random event</li>
<li>[Bug Fixes]</li>
<li>~ Fixed: Gallium freezing point too low</li>
<li>~ Fixed: Clouds getting stuck on each other</li>
<li>~ Fixed: Molten conductivity not being set properly</li>
<li>~ Fixed: Dead Bug button color not showing</li>
<li>[Technical]</li>
<li>+ "decor" world gen property, see "forest" or "tide_pool"</li>
</ul>
<h2 id="1.6.5">[Version 1.6.5 - November 16, 2022]</h2>
<ul>
<li>+ Radiated Glass</li>
<li>+ Gallium</li>
<li>~ Improved Baking Soda and Vinegar reaction</li>
<li>+ Fireflies sync up blinking over time</li>
<li>+ Bees can pollinate any plants that they touch</li>
<li>+ Added Sandboxels introduction and controls underneath game</li>
<li>+ Loading screen</li>
<li>[Bug Fixes]</li>
<li>~ Fixed: Yeast immediately killed by alcohol it ferments</li>
<li>[Technical]</li>
<li>~ Revamped CSS, report any bugs on the Discord</li>
<li>+ New "attr1" and "attr2" reaction property</li>
</ul>
<h2 id="1.6.4">[Version 1.6.4 - July 30, 2022]</h2>
<ul>
<li>+ Seeds and bombs have a short cooldown when on the lowest cursor size</li>
<li>+ Cloud (The normal, boring kind)</li>
<li>~ Tweaked cloud behavior</li>
<li>+ Positron</li>
<li>+ Strange Matter</li>
<li>+ Dead Bug (Hidden)</li>
<li>+ Pool Water (Hidden)</li>
<li>+ Poison Gas (Hidden) - Result of various lethal reactions</li>
<li>+ Ice forms of all Water and Blood variants</li>
<li>+ Flies are instantly electrocuted</li>
<li>+ Tadpoles are affected by Poison, Radiation, etc.</li>
<li>+ Flying insects will die from drowning</li>
<li>~ Adjusted Root flammability</li>
<li>~ Reduced Acid Gas's condensation point</li>
<li>~ Nerfed Yeast growth rate</li>
<li>~ Burning Bread makes a lot less ash</li>
<li>[Bug Fixes]</li>
<li>~ Fixed: Random events can blow up the Sun</li>
<li>~ Fixed: Clouds always start by moving right</li>
<li>~ Fixed: Acid Gas spawns at room temperature</li>
<li>~ Fixed: Some things immune to Acid aren't immune to Acid Gas</li>
<li>~ Fixed: Too much piling up of Rad Steam under Rad Clouds</li>
<li>[Technical]</li>
<li>+ "cooldown" element attribute, in ticks</li>
</ul>
<h2 id="1.6.3">[Version 1.6.3 - July 24, 2022 - Random Update]</h2>
<ul>
<li>+ Random Events! Enable in settings!</li>
<li>+ Electrum alloy (Hidden)</li>
<li>- Dirty Water no longer stains</li>
<li>[Minor Reactions]</li>
<li>+ Hydrogen and Sulfur will create a bad smell</li>
<li>+ Water breaks down Dyes</li>
<li>+ Gold breaks into Gold Coins</li>
<li>+ Snails eat and purify Dirty Water</li>
<li>+ Poison and Alcohol now kill Yeast</li>
<li>+ Rats can have babies after eating enough</li>
<li>+ Bees produce honey after eating enough</li>
<li>[Bug Fixes]</li>
<li>~ Fixed: Weird triangular root formations when hot</li>
<li>~ Fixed: Oil doesn’t soak into Dirt and makes infinite Mud</li>
<li>~ Fixed: Dirty Water no longer rots Meat</li>
</ul>
<h2 id="1.6.2">[Version 1.6.2 - July 10, 2022]</h2>
<ul>
<li>+ Dyes will mix colors [Warning: Laggy]</li>
<li>+ Broth, from heating meat in water</li>
</ul>
<h2 id="1.6.1">[Version 1.6.1 - May 17, 2022 - Egg Update]</h2>
<ul>
<li>+ Feather</li>
<li>+ Egg</li>
<li>+ Yolk</li>
<li>+ Birds, Frogs, Fish, and all bugs (except bees) can lay eggs after eating enough</li>
<li>+ Animal Eggs will hatch over time</li>
<li>+ Hard Yolk</li>
<li>+ Tadpole (Hidden)</li>
<li>+ DNA (Hidden), from broken cells</li>
<li>+ Homunculus (Hidden)</li>
<li>~ Animals are more resistant to temperatures</li>
<li>~ Implemented Google's Monk Skin Tone Scale for Humans</li>
<li>~ Adjusted Human shirt colors</li>
<li>+ Life can be created via the Miller-Urey method</li>
<li>+ Ice-nine can freeze more Water-based elements</li>
<li>+ Primordial Soup can create Seltzer and Oxygen</li>
<li>+ Primordial Soup can moisten the ground</li>
<li>+ Electricity speeds up Primordial Soup processes</li>
<li>+ Ants can dig through Clay Soil</li>
<li>+ Ants eat Mushroom Caps, Candy</li>
<li>~ Adjusted Ant behavior</li>
<li>~ Adjusted Ant, Fly, and Firefly color</li>
<li>+ Fleas can eat Antidote, Dead Plant</li>
<li>+ Fleas will eat Mercury and die</li>
<li>+ Fleas will eat Ketchup to no dietary gain</li>
<li>+ Salt Water kills Snails and Slugs</li>
<li>+ Stink Bugs have a diet</li>
<li>+ Mercury dirties Water</li>
<li>+ Water breaks down Mudstone</li>
<li>+ Birds breathe Oxygen</li>
<li>+ Birds eat Mushrooms, Seeds</li>
<li>+ Consistent Bird toxicity reactions</li>
<li>+ Termites can eat Sawdust, Particleboard, Tinder, and Lichen</li>
<li>+ Alcohol kills Plants</li>
<li>+ Chlorine and Baking Soda kills Algae</li>
<li>+ Chlorine kills Plague and Virus</li>
<li>+ Some illegal toxic recipes</li>
<li>+ Vinegar kills Lichen</li>
<li>+ Snails and Slugs eat Lichen</li>
<li>+ Roots can grow through Mycelium</li>
<li>+ Rats eat Grapes</li>
<li>+ Worms can swim through Water</li>
<li>+ Acid ignores Plastics</li>
<li>+ Salt rusts Iron</li>
<li>+ Some animals can be smashed</li>
<li>+ Better Baking Soda-Vinegar reaction</li>
<li>+ Acid can boil into Acid Gas</li>
<li>+ Algae can grow in any liquid</li>
<li>+ Udders are now flammable</li>
<li>~ Dirty Water stains less</li>
<li>~ Lowered Slag melting point</li>
<li>~ Nerfed Lichen growth</li>
<li>~ Flowers now use Plant as its stem instead of Grass</li>
<li>~ Primordial Soup is less conductive</li>
<li>~ Fixed: Color Sand not doing its thing</li>
<li>~ Fixed: Dirt doesn't soak up blood but turns to Mud anyway</li>
<li>~ Fixed: Sodium ghost pixels</li>
<li>~ Fixed: Pressure Plate breaks at top of canvas</li>
<li>~ Fixed: Nitroglycerin not activated by electricity</li>
<li>~ Fixed: Sugar Water gives Cells cancer</li>
<li>~ Fixed: EMP Bomb explodes badly</li>
<li>~ Fixed: Fish constantly changing directions</li>
<li>+ Technical: Debug tool</li>
</ul>
<h2 id="1.6">[Version 1.6 - May 1, 2022 - Ecosystem Update]</h2>
<ul>
<li>+ Air Density - Gases lighter than air will rise</li>
<li>+ Clouds toggle setting</li>
<li>+ EMP Bomb</li>
<li>+ Bird</li>
<li>[Roots]</li>
<li>+ Trees grow roots when planted on soil</li>
<li>+ Roots can now grow and spread</li>
<li>+ Fiber (Hidden)</li>
<li>+ Roots absorb water from soil</li>
<li>[The Sun]</li>
<li>+ The Sun has different color variations depending on its temperature</li>
<li>+ The Sun outputs more light the hotter it is</li>
<li>+ Supernova (Hidden)</li>
<li>+ The Sun will EXPLODE when frozen</li>
<li>+ More Sun element fusion, depending on temperature</li>
<li>~ Nerfed Sun, it will no longer boil everything</li>
<li>+ Light takes the color of whatever it hits</li>
<li>~ Pixels now heat up a tiny amount when hit by Light</li>
<li>+ Room Temp tool</li>
<li>+ Grass can now grow and spread</li>
<li>+ Algae can now reproduce</li>
<li>+ Air in Info Screen</li>
<li>+ Gravel can break into Sand</li>
<li>+ Mudstone can be cooled into Permafrost</li>
<li>+ Pollen dissolves in Water</li>
<li>+ Acid breaks Charcoal into Carbon Dioxide</li>
<li>+ Algae and Yeast can team up and become Lichen</li>
<li>+ Rats can eat Lichen</li>
<li>+ Lichen can break rocks down into Dirt</li>
<li>+ Blood absorbs Oxygen and Carbon Dioxide</li>
<li>+ Cancer can be killed by Proton bombardment</li>
<li>+ Plants will die when exposed to Vinegar, Baking Soda, or Bleach</li>
<li>+ Baking Soda can melt</li>
<li>+ Loopy now clones the first thing it touches</li>
<li>+ Worms and Rats can sink in Water</li>
<li>~ Recolored Dirt and Permafrost</li>
<li>~ Ozone no longer rises</li>
<li>~ Rotten Meat can be converted to Ammonia</li>
<li>~ Unhid Wheat</li>
<li>~ Moved Flour and Sugar to Food</li>
<li>~ Paper is now a still solid</li>
<li>~ Hid many elements, including some seeds, most alloys, Liquid Hydrogen, Porcelain, Particleboard, some powders, Mycelium, Quicklime, Packed Snow</li>
<li>~ Snow can freeze into Packed Snow, and then into Ice</li>
<li>~ Grenades explode immediately on shock</li>
<li>~ Optimizations for basic powders, liquids, and gases</li>
<li>~ Excluded Uranium, Fire Cloud, Antimatter, and Void from Random</li>
<li>~ Permafrost and Molten Dirt turn into Mudstone</li>
<li>~ Adjusted Dirty Water density</li>
<li>~ Fireworks release Carbon Dioxide instead of Fire</li>
<li>~ Copper no longer oxidizes on its own</li>
<li>~ Slag no longer forms with some molten elements</li>
<li>~ Lichen now only grows horizontally</li>
<li>~ Cellulose can be heated into Paper</li>
<li>~ Fixed: Explosions can't destroy pixels with broken states</li>
<li>~ Fixed: Incinerate tool not doing state changes</li>
<li>~ Fixed: Hyphae changing anything to Mycelium</li>
<li>~ Fixed: Mercury density</li>
<li>~ Fixed: Metal Scrap is invincible</li>
<li>~ Fixed: Sun can be pushed by Rocks</li>
<li>~ Fixed: Trees grow continuously as leaves die from heat</li>
<li>+ Technical: Reactions can be enabled/disabled with a setting</li>
<li>+ Technical: maxSize element property</li>
</ul>
<h2 id="1.5.1">[Version 1.5.1 - Apr. 19, 2022]</h2>
<ul>
<li>+ Hold Shift to draw lines</li>
<li>+ Info Screen now shows category info</li>
<li>+ Info Screen shows undiscovered elements</li>
<li>+ Fire now appears below burning pixels if the top if blocked</li>
<li>+ Porcelain</li>
<li>+ Pyrite</li>
<li>+ Incinerate tool</li>
<li>+ Unburn tool</li>
<li>+ Particleboard</li>
<li>+ Rats, Humans, and Yeasts can now breathe oxygen</li>
<li>+ Worms decompose Dead Plants</li>
<li>+ Chlorine Ice</li>
<li>+ Sulfur Gas</li>
<li>+ Frozen Yogurt</li>
<li>+ Antiice</li>
<li>+ Liquid forms of Ammonia, Propane, Methane</li>
<li>+ Sawdust can be made into Cellulose</li>
<li>+ Reset buttons in Settings</li>
<li>+ Added clarification and <a href="https://docs.google.com/document/d/1YWPLKEvGeaaLuYWzObCyLK2Y09JPZgF1ODQQCbU3Sng/edit?usp=sharing" target="_blank">mod list</a> link to Mod Manager</li>
<li>+ All metals given unique hardness values</li>
<li>+ Lamp Oil removes Glue</li>
<li>+ Cheese can be vaporized</li>
<li>+ Bone Marrow, Pointer, Rainbow, and Static can now be obtained</li>
<li>+ Ash can eliminate Stench</li>
<li>- Removed Helium Ice</li>
<li>~ Improved Smash tool</li>
<li>~ Acid no longer errodes Water</li>
<li>~ Fish out of water now fall to side</li>
<li>~ Less Smog forms</li>
<li>~ Algae now floats on water</li>
<li>~ Fish no longer tend to swim downwards</li>
<li>~ Molten Sulfur is now red and non-viscous</li>
<li>~ Fermented alcohols now colored differently</li>
<li>~ More foods can be fermented</li>
<li>~ Tweaked Milk flavor densities</li>
<li>~ Tweaked Rat consumption rates</li>
<li>~ Tweaked most insect consumption rates</li>
<li>~ Tweaked Meat cooking rates</li>
<li>~ Tweaked Yeast fermentation rates</li>
<li>~ Glue no longer sticks to Ice</li>
<li>~ Oil burns longer</li>
<li>~ Fixed: Gaps in lines when drawing fast</li>
<li>~ Fixed: Notifications not showing in Unlock as Discover mode</li>
<li>~ Fixed: Clicking outside menu immediately starting placing</li>
<li>~ Fixed: Molten Slag eats infinite Ash</li>
<li>~ Fixed: Flash color inconsistent with Light</li>
<li>~ Fixed: Mercury not amalgamating with Gold Coins or Rose Gold</li>
<li>~ Fixed: Decimal point TPS</li>
<li>+ Technical: Tools can now ignore certain elements</li>
<li>+ Technical: "related" element property, shows a "See Also" in info</li>
<li>+ Technical: "alias" element property, shows a "Also known as" in info</li>
</ul>
<h2 id="1.5">[Version 1.5 - Apr. 13, 2022]</h2>
<ul>
<li>+ Greatly improved E/Element Select button</li>
<li>+ Mercury</li>
<li>+ Amalgam</li>
<li>+ Ice forms of Helium, Hydrogen, Oxygen, Alcohol, Acid, Juice, and Slime</li>
<li>+ Alcohol Gas</li>
<li>+ Ice-Nine</li>
<li>+ Neutron</li>
<li>+ Proton</li>
<li>+ Uranium can explode if bombarded with Neutrons</li>
<li>+ Ozone</li>
<li>+ H-Bomb</li>
<li>+ Chocolate Milk (Hidden)</li>
<li>+ Fruit Milk (Hidden)</li>
<li>+ Revamped Meat rotting completely</li>
<li>~ Fixed: Scroll wheel too sensitive</li>
<li>[Minor]</li>
<li>+ Baking Soda eliminates Stench</li>
<li>+ Thermite can be made with alloys</li>
<li>+ Bleach dirties Water</li>
<li>+ Bleach kills Cells and Cancers</li>
<li>+ Bleach cleans Blood</li>
<li>+ Dyes and Ink can be easily evaporated</li>
<li>+ Soap cleans Soda, Dyes, and Ink</li>
<li>+ Calcium reacts with Oxygen</li>
<li>+ Ball (Hidden) melts into Plastic</li>
<li>+ Light changes color when hitting Steam, Smog, Ice, or Diamond</li>
<li>+ Torch extinguishes at absolute zero</li>
<li>+ Torch explodes into Sawdust</li>
<li>+ Potatoes provide some electricity to Wire</li>
<li>+ Radiation pops Corn</li>
<li>+ Fire can be suppressed with CO₂</li>
<li>+ Sponges are now flammable</li>
<li>+ Fusion of Hydrogen, Nitrogen, Sulphur, and Neon</li>
<li>~ Adjusted Sap color to look less like Magma</li>
<li>~ Adjusted Yogurt behavior</li>
<li>~ Stench is no longer flammable</li>
<li>~ Plastic releases Stench on burn</li>
<li>~ Hid Hail</li>
<li>+ Alert for websites embedding the game illegally</li>
<li>~ Renamed Chocolate Syrup to Melted Chocolate</li>
<li>~ Fixed: Fireworks have no state of matter / Don't sink</li>
<li>~ Fixed: Frozen Frogs flickering / constantly refreezing</li>
<li>+ Technical: More automatic tempHigh/Low element generation for all states of matter</li>
<li>+ Technical: stateHighName/stateLowName</li>
</ul>
<h2 id="1.4">[Version 1.4 - Feb. 19, 2022]</h2>
<ul>
<li>+ Improved the look of gases</li>
<li>+ "Unlock as Discovered" hiding mode</li>
<li>^ When enabled, hidden elements are shown in the toolbar when they are created</li>
<li>+ Sun</li>
<li>+ Stench</li>
<li>+ Fragrance</li>
<li>+ Incense</li>
<li>+ Stink Bug</li>
<li>^ First bug with complex behavior</li>
<li>^ Will be added to other animals eventually</li>
<li>^ Three phases: Flying, Landing, and Standing</li>
<li>+ Malware, the enemy of Gray Goo</li>
<li>+ Grape</li>
<li>+ Juice</li>
<li>+ Sap</li>
<li>+ Sodium</li>
<li>+ Basic View, no special effects (Press 3)</li>
<li>+ Smooth View, blends surrounding pixels (Press 4)</li>
<li>+ Flowers now come in different colors</li>
<li>+ Bleach neutralizes Acid</li>
<li>~ Substantial optimizations</li>
<li>~ Light and Laser are now octodirectional</li>
<li>~ Buffed Antimatter Bomb</li>
<li>~ Nerfed Gray Goo</li>
<li>~ Sugar products no longer turn into Molasses</li>
<li>~ Neon no longer stays red after losing charge</li>
<li>~ Electric glow no longer shows in Thermal View</li>
<li>~ Fixed: Pick tool doesn't select the element's category</li>
<li>~ Fixed: Special fire colors not always being used</li>
<li>+ Technical: color1 and color2 reaction attributes</li>
</ul>
<h2 id="1.3">[Version 1.3 - Feb. 11, 2022]</h2>
<ul>
<li>+ World Generation Setting [Beta]</li>
<li>+ Staining</li>
<li>+ Some liquids will stain solids, some will clean</li>
<li>+ Smoke now stains solids (soot)</li>
<li>+ Staining can be disabled in settings</li>
<li>+ Paint tool</li>
<li>+ Hold Shift to color solid</li>
<li>+ Unpaint tool</li>
<li>+ Color Sand</li>
<li>+ Stained Glass</li>
<li>+ Smog</li>
<li>+ Hail</li>
<li>+ Hail Cloud</li>
<li>+ Seltzer (Carbonated Water, Hidden)</li>
<li>+ Soda</li>
<li>+ Bleach</li>
<li>+ Chlorine</li>
<li>+ Liquid Chlorine (Hidden)</li>
<li>+ Thermite</li>
<li>+ Cement</li>
<li>+ Dye (Color mixing not added)</li>
<li>+ Ink</li>
<li>+ Color Smoke</li>
<li>+ Sponge</li>
<li>+ "Art" element, a wall that can be colored</li>
<li>+ Uncharge tool</li>
<li>+ Smash tool</li>
<li>+ Cook tool</li>
<li>+ Sugar will help Cells and Cancer grow</li>
<li>+ Alcohol and Poison will kill Cells and Cancer</li>
<li>+ Soap now removes Oil</li>
<li>+ Gray Goo can now be electrocuted</li>
<li>+ Rats now eat cheese</li>
<li>+ Oxygen and Water makes Foam</li>
<li>+ Torches can be extinguished with more types of Water</li>
<li>+ Acid Gas now turns to Acid when cold</li>
<li>~ Tweaked Acid Gas color</li>
<li>~ Grenades now explode into metal fragments</li>
<li>~ Fixed: Pressure Plates...</li>
<li>+ Technical: Custom tools, see example_mod.js</li>
<li>+ Technical: "stain" element attribute, decimal value -1 to 1, negative values remove stains</li>
<li>+ Technical: "customColor" element attribute, true/false, allows for picking of a color before placing</li>
<li>+ Technical: "desc" element attribute, string, allows for custom descriptions in Element Info ("extraInfo" an alias)</li>
<li>+ Technical: null allowed in stateHigh and stateLow, deletes pixel</li>
<li>+ Technical: Reaction attributes "tempMin"(number) "tempMax"(number) "charged"(true/false) "charge1"(number) "charge2"(number)</li>
<li>+ Technical: changePixel(pixel,newElement) function</li>
</ul>
<h2 id="1.2">[Version 1.2 - Feb. 4, 2022]</h2>
<ul>
<li>+ Human</li>
<li>+ Firework</li>
<li>+ Dynamite</li>
<li>+ Primordial Soup</li>
<li>+ Seeds - a mixture of various seeds</li>
<li>+ Paper</li>
<li>+ Cellulose</li>
<li>+ Pressure Plate</li>
<li>+ Border</li>
<li>+ Poison</li>
<li>+ Antidote</li>
<li>+ Dirty Bomb</li>
<li>+ Dead Plant (Hidden)</li>
<li>+ Frozen Plant (Hidden)</li>
<li>+ Ember (Hidden, burned into by wood)</li>
<li>+ Fw_Ember (Hidden)</li>
<li>+ View Switcher (Press 1-9)</li>
<li>+ Thermal View (2)</li>
<li>+ Settings Menu</li>
<li>+ Metric, Imperial, and SI units</li>
<li>+ Unhide All Element</li>
<li>+ Background Color</li>
<li>+ C or F2 - Download Screenshot</li>
<li>+ F1 - Hide/Show GUI and HUD</li>
<li>+ Left Arrow & Right Arrow change categories</li>
<li>+ New smooth animation for Rainbow element</li>
<li>+ Acid Clouds can slowly burn</li>
<li>+ Acid Gas and Acid Clouds can be neutralized like Acid</li>
<li>+ Nitroglycerin now explodes when sparked</li>
<li>+ Bamboo now breaks into Sawdust</li>
<li>+ Most explosives can now melt</li>
<li>+ Sand and Dirt can now absorb Blood and Oil</li>
<li>+ Alcohol can fight against Virus and Plague</li>
<li>+ 404 Page</li>
<li>~ Explosives are no longer included in Random</li>
<li>~ Unhid pollen</li>
<li>~ Hid Chocolate Syrup</li>
<li>~ Moved Meat to Food category</li>
<li>~ Meat rots a lot slower</li>
<li>~ Animals die from plague slower</li>