data-faking 0.1.2

Generate massive amounts of fake data
Documentation
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
use crate::utils::seeder;
use wasm_bindgen::prelude::*;

#[wasm_bindgen]
pub fn minecraft_achievement() -> String {
	ACHIEVEMENTS[seeder::gen_range(0..ACHIEVEMENTS_LEN)].to_string()
}

#[wasm_bindgen]
pub fn minecraft_biome() -> String {
	BIOMES[seeder::gen_range(0..BIOMES_LEN)].to_string()
}

#[wasm_bindgen]
pub fn minecraft_block() -> String {
	BLOCKS[seeder::gen_range(0..BLOCKS_LEN)].to_string()
}

#[wasm_bindgen]
pub fn minecraft_enchantment() -> String {
	ENCHANTMENTS[seeder::gen_range(0..ENCHANTMENTS_LEN)].to_string()
}

#[wasm_bindgen]
pub fn minecraft_game_mode() -> String {
	GAME_MODES[seeder::gen_range(0..GAME_MODES_LEN)].to_string()
}

#[wasm_bindgen]
pub fn minecraft_item() -> String {
	ITEMS[seeder::gen_range(0..ITEMS_LEN)].to_string()
}

#[wasm_bindgen]
pub fn minecraft_mob() -> String {
	MOBS[seeder::gen_range(0..MOBS_LEN)].to_string()
}

#[wasm_bindgen]
pub fn minecraft_status_effect() -> String {
	STATUS_EFFECTS[seeder::gen_range(0..STATUS_EFFECTS_LEN)].to_string()
}
static ACHIEVEMENTS: [&'static str; 111] = [
	"Acquire Hardware",
	"Adventuring Time",
	"Ahoy!",
	"Alternative Fuel",
	"Archer",
	"Artificial Selection",
	"Atlantis?",
	"Bake Bread",
	"Beam Me Up",
	"Bee our guest",
	"Benchmaking",
	"Body Guard",
	"Bullseye",
	"Buy Low, Sell High",
	"Camouflage",
	"Castaway",
	"Cheating Death",
	"Chestful of Cobblestone",
	"Cover me in debris",
	"Cow Tipper",
	"Delicious Fish",
	"Diamonds to you!",
	"DIAMONDS!",
	"Disenchanted",
	"Dispense With This",
	"Do a Barrel Roll!",
	"Dry Spell",
	"Echolocation",
	"Enchanter",
	"Feeling I will",
	"Free Diver",
	"Freight Station",
	"Fruit on the Loom",
	"Getting an Upgrade",
	"Getting Wood",
	"Great View From Up Here",
	"Have a Shearful Day",
	"Hot Topic",
	"Hot tourist destination",
	"I am a Marine Biologist",
	"I have got a bad feeling about this",
	"Inception",
	"Into Fire",
	"Into the Nether",
	"Iron Belly",
	"Iron Man",
	"It is a Sign!",
	"Kill the Beast!",
	"Leader Of The Pack",
	"Let it Go!",
	"Librarian",
	"Lion Hunter",
	"Local Brewery",
	"Map Room",
	"Master Trader",
	"Me Gold!",
	"MOAR Tools",
	"Monster Hunter",
	"Moskstraumen",
	"On A Rail",
	"One Pickle, Two Pickle, Sea Pickle, Four",
	"Oooh, shiny!",
	"Organizational Wizard",
	"Overkill",
	"Overpowered",
	"Passing the Time",
	"Plethora of Cats",
	"Pork Chop",
	"Pot Planter",
	"Rabbit Season",
	"Rainbow Collection",
	"Renewable Energy",
	"Repopulation",
	"Return to Sender",
	"Saddle Up",
	"Sail the 7 Seas",
	"Sleep with the Fishes",
	"Smelt Everything!",
	"Sniper Duel",
	"So I Got That Going for Me",
	"Sound the Alarm!",
	"Stayin Frosty",
	"Sticky Situation",
	"Super Fuel",
	"Super Sonic",
	"Taking Inventory",
	"Taste of Your Own Medicine",
	"The Beaconator",
	"The Beginning?",
	"The Beginning.",
	"The Deep End",
	"The End?",
	"The End.",
	"The End... Again...",
	"The Haggler",
	"The Lie",
	"Tie Dye Outfit",
	"Time for Stew",
	"Time to Farm!",
	"Time to Mine!",
	"Time to Strike!",
	"Top of the World",
	"Total Beelocation",
	"Trampoline",
	"Treasure Hunter",
	"We are being attacked!",
	"When Pigs Fly",
	"Where Have You Been?",
	"You Need a Mint",
	"Zombie Doctor",
	"Zoologist",
];
static ACHIEVEMENTS_LEN: usize = ACHIEVEMENTS.len();

static BIOMES: [&'static str; 79] = [
	"Badlands",
	"Badlands Plateau",
	"Bamboo Jungle",
	"Bamboo Jungle Hills",
	"Basalt Deltas",
	"Beach",
	"Birch Forest",
	"Birch Forest Hills",
	"Cold Ocean",
	"Crimson Forest",
	"Dark Forest",
	"Dark Forest Hills",
	"Deep Cold Ocean",
	"Deep Frozen Ocean",
	"Deep Lukewarm Ocean",
	"Deep Ocean",
	"Deep Warm Ocean",
	"Desert",
	"Desert Hills",
	"Desert Lakes",
	"End Barrens",
	"End Highlands",
	"End Midlands",
	"Eroded Badlands",
	"Flower Forest",
	"Forest",
	"Frozen Ocean",
	"Frozen River",
	"Giant Spruce Taiga",
	"Giant Spruce Taiga Hills",
	"Giant Tree Taiga",
	"Giant Tree Taiga Hills",
	"Gravelly Mountains",
	"Gravelly Mountains+",
	"Ice Spikes",
	"Jungle",
	"Jungle Edge",
	"Jungle Hills",
	"Lukewarm Ocean",
	"Modified Badlands Plateau",
	"Modified Jungle",
	"Modified Jungle Edge",
	"Modified Wooded Badlands Plateau",
	"Mountain Edge",
	"Mountains",
	"Mushroom Field Shore",
	"Mushroom Fields",
	"Nether Wastes",
	"Ocean",
	"Plains",
	"River",
	"Savanna",
	"Savanna Plateau",
	"Shattered Savanna",
	"Shattered Savanna Plateau",
	"Small End Islands",
	"Snowy Beach",
	"Snowy Mountains",
	"Snowy Taiga",
	"Snowy Taiga Hills",
	"Snowy Taiga Mountains",
	"Snowy Tundra",
	"Soul Sand Valley",
	"Stone Shore",
	"Sunflower Plains",
	"Swamp",
	"Swamp Hills",
	"Taiga",
	"Taiga Hills",
	"Taiga Mountains",
	"Tall Birch Forest",
	"Tall Birch Hills",
	"The End",
	"The Voi",
	"Warm Ocean",
	"Warped Forest",
	"Wooded Badlands Plateau",
	"Wooded Hills",
	"Wooded Mountains",
];
static BIOMES_LEN: usize = BIOMES.len();

static ENCHANTMENTS: [&'static str; 39] = [
	"Aqua Affinity",
	"Bane of Arthropods",
	"Blast Protection",
	"Channeling",
	"Cleaving",
	"Curse of Binding",
	"Curse of Vanishing",
	"Depth Strider",
	"Efficiency",
	"Feather Falling",
	"Fire Aspect",
	"Fire Protection",
	"Flame",
	"Fortune",
	"Frost Walker",
	"Impaling",
	"Infinity",
	"Knockback",
	"Looting",
	"Loyalty",
	"Luck of the Sea",
	"Lure",
	"Mending",
	"Multishot",
	"Piercing",
	"Power",
	"Projectile Protection",
	"Protection",
	"Punch",
	"Quick Charge",
	"Respiration",
	"Riptide",
	"Sharpness",
	"Silk Touch",
	"Smite",
	"Soul Speed",
	"Sweeping Edge",
	"Thorns",
	"Unbreaking",
];
static ENCHANTMENTS_LEN: usize = ENCHANTMENTS.len();

static BLOCKS: [&'static str; 200] = [
	"Stone",
	"Granite",
	"Polished Granite",
	"Diorite",
	"Polished Diorite",
	"Andesite",
	"Polished Andesite",
	"Grass",
	"Dirt",
	"Coarse Dirt",
	"Podzol",
	"Cobblestone",
	"Oak Wood Plank",
	"Spruce Wood Plank",
	"Birch Wood Plank",
	"Jungle Wood Plank",
	"Acacia Wood Plank",
	"Dark Oak Wood Plank",
	"Oak Sapling",
	"Spruce Sapling",
	"Birch Sapling",
	"Jungle Sapling",
	"Acacia Sapling",
	"Dark Oak Sapling",
	"Bedrock",
	"Flowing Water",
	"Still Water",
	"Flowing Lava",
	"Still Lava",
	"Sand",
	"Red Sand",
	"Gravel",
	"Gold Ore",
	"Iron Ore",
	"Coal Ore",
	"Oak Wood",
	"Spruce Wood",
	"Birch Wood",
	"Jungle Wood",
	"Oak Leaves",
	"Spruce Leaves",
	"Birch Leaves",
	"Jungle Leaves",
	"Sponge",
	"Wet Sponge",
	"Glass",
	"Lapis Lazuli Ore",
	"Lapis Lazuli Block",
	"Dispenser",
	"Sandstone",
	"Chiseled Sandstone",
	"Smooth Sandstone",
	"Note Block",
	"Bed",
	"Powered Rail",
	"Detector Rail",
	"Sticky Piston",
	"Cobweb",
	"Dead Shrub",
	"Grass",
	"Fern",
	"Dead Bush",
	"Piston",
	"Piston Head",
	"White Wool",
	"Orange Wool",
	"Magenta Wool",
	"Light Blue Wool",
	"Yellow Wool",
	"Lime Wool",
	"Pink Wool",
	"Gray Wool",
	"Light Gray Wool",
	"Cyan Wool",
	"Purple Wool",
	"Blue Wool",
	"Brown Wool",
	"Green Wool",
	"Red Wool",
	"Black Wool",
	"Dandelion",
	"Poppy",
	"Blue Orchid",
	"Allium",
	"Azure Bluet",
	"Red Tulip",
	"Orange Tulip",
	"White Tulip",
	"Pink Tulip",
	"Oxeye Daisy",
	"Brown Mushroom",
	"Red Mushroom",
	"Gold Block",
	"Iron Block",
	"Double Stone Slab",
	"Double Sandstone Slab",
	"Double Wooden Slab",
	"Double Cobblestone Slab",
	"Double Brick Slab",
	"Double Stone Brick Slab",
	"Double Nether Brick Slab",
	"Double Quartz Slab",
	"Stone Slab",
	"Sandstone Slab",
	"Wooden Slab",
	"Cobblestone Slab",
	"Brick Slab",
	"Stone Brick Slab",
	"Nether Brick Slab",
	"Quartz Slab",
	"Bricks",
	"TNT",
	"Bookshelf",
	"Moss Stone",
	"Obsidian",
	"Torch",
	"Fire",
	"Monster Spawner",
	"Oak Wood Stairs",
	"Chest",
	"Redstone Wire",
	"Diamond Ore",
	"Diamond Block",
	"Crafting Table",
	"Wheat Crops",
	"Farmland",
	"Furnace",
	"Burning Furnace",
	"Standing Sign Block",
	"Oak Door Block",
	"Ladder",
	"Rail",
	"Cobblestone Stairs",
	"Wall-mounted Sign Block",
	"Lever",
	"Stone Pressure Plate",
	"Iron Door Block",
	"Wooden Pressure Plate",
	"Redstone Ore",
	"Glowing Redstone Ore",
	"Stone Button",
	"Snow",
	"Ice",
	"Snow Block",
	"Cactus",
	"Clay",
	"Sugar Canes",
	"Jukebox",
	"Oak Fence",
	"Pumpkin",
	"Netherrack",
	"Soul Sand",
	"Glowstone",
	"Nether Portal",
	"Jack oLantern",
	"Cake Block",
	"Redstone Repeater Block off)",
	"Redstone Repeater Block on)",
	"White Stained Glass",
	"Orange Stained Glass",
	"Magenta Stained Glass",
	"Light Blue Stained Glass",
	"Yellow Stained Glass",
	"Lime Stained Glass",
	"Pink Stained Glass",
	"Gray Stained Glass",
	"Light Gray Stained Glass",
	"Cyan Stained Glass",
	"Purple Stained Glass",
	"Blue Stained Glass",
	"Brown Stained Glass",
	"Green Stained Glass",
	"Red Stained Glass",
	"Black Stained Glass",
	"Wooden Trapdoor",
	"Stone Monster Egg",
	"Cobblestone Monster Egg",
	"Stone Brick Monster Egg",
	"Mossy Stone Brick Monster Egg",
	"Cracked Stone Brick Monster Egg",
	"Chiseled Stone Brick Monster Egg",
	"Stone Bricks",
	"Mossy Stone Bricks",
	"Cracked Stone Bricks",
	"Chiseled Stone Bricks",
	"Brown Mushroom Block",
	"Red Mushroom Block",
	"Iron Bars",
	"Glass Pane",
	"Melon Block",
	"Pumpkin Stem",
	"Melon Stem",
	"Vines",
	"Oak Fence Gate",
	"Brick Stairs",
	"Stone Brick Stairs",
	"Mycelium",
	"Lily Pad",
	"Nether Brick",
	"Nether Brick Fence",
];
static BLOCKS_LEN: usize = BLOCKS.len();

static GAME_MODES: [&'static str; 6] = [
	"Adventure",
	"Creative",
	"Demo",
	"Hardcore",
	"Spectator",
	"Survival",
];
static GAME_MODES_LEN: usize = GAME_MODES.len();

static ITEMS: [&'static str; 119] = [
	"Iron Shovel",
	"Iron Pickaxe",
	"Iron Axe",
	"Flint and Steel",
	"Apple",
	"Bow",
	"Arrow",
	"Coal",
	"Charcoal",
	"Diamond",
	"Iron Ingot",
	"Gold Ingot",
	"Iron Sword",
	"Wooden Sword",
	"Wooden Shovel",
	"Wooden Pickaxe",
	"Wooden Axe",
	"Stone Sword",
	"Stone Shovel",
	"Stone Pickaxe",
	"Stone Axe",
	"Diamond Sword",
	"Diamond Shovel",
	"Diamond Pickaxe",
	"Diamond Axe",
	"Stick",
	"Bowl",
	"Mushroom Stew",
	"Golden Sword",
	"Golden Shovel",
	"Golden Pickaxe",
	"Golden Axe",
	"String",
	"Feather",
	"Gunpowder",
	"Wooden Hoe",
	"Stone Hoe",
	"Iron Hoe",
	"Diamond Hoe",
	"Golden Hoe",
	"Wheat Seeds",
	"Wheat",
	"Bread",
	"Leather Helmet",
	"Leather Tunic",
	"Leather Pants",
	"Leather Boots",
	"Chainmail Helmet",
	"Chainmail Chestplate",
	"Chainmail Leggings",
	"Chainmail Boots",
	"Iron Helmet",
	"Iron Chestplate",
	"Iron Leggings",
	"Iron Boots",
	"Diamond Helmet",
	"Diamond Chestplate",
	"Diamond Leggings",
	"Diamond Boots",
	"Golden Helmet",
	"Golden Chestplate",
	"Golden Leggings",
	"Golden Boots",
	"Flint",
	"Raw Porkchop",
	"Cooked Porkchop",
	"Painting",
	"Golden Apple",
	"Enchanted Golden Apple",
	"Sign",
	"Oak Door",
	"Bucket",
	"Water Bucket",
	"Lava Bucket",
	"Minecart",
	"Saddle",
	"Iron Door",
	"Redstone",
	"Snowball",
	"Oak Boat",
	"Leather",
	"Milk Bucket",
	"Brick",
	"Clay",
	"Sugar Canes",
	"Paper",
	"Book",
	"Slimeball",
	"Minecart with Chest",
	"Minecart with Furnace",
	"Egg",
	"Compass",
	"Fishing Rod",
	"Clock",
	"Glowstone Dust",
	"Raw Fish",
	"Raw Salmon",
	"Clownfish",
	"Pufferfish",
	"Cooked Fish",
	"Cooked Salmon",
	"Ink Sack",
	"Rose Red",
	"Cactus Green",
	"Coco Beans",
	"Lapis Lazuli",
	"Purple Dye",
	"Cyan Dye",
	"Light Gray Dye",
	"Gray Dye",
	"Pink Dye",
	"Lime Dye",
	"Dandelion Yellow",
	"Light Blue Dye",
	"Magenta Dye",
	"Orange Dye",
	"Bone Meal",
	"Bone",
	"Sugar",
];
static ITEMS_LEN: usize = ITEMS.len();

static MOBS: [&'static str; 64] = [
	"Sheep",
	"Cow",
	"Fox",
	"Bat",
	"Chicken",
	"Cod",
	"Ocelot",
	"Pig",
	"Rabbit",
	"Salmon",
	"Mooshroom",
	"Squid",
	"Tropical fish",
	"Turtle",
	"Villager",
	"Wandering trader",
	"Pufferfish",
	"Donkey",
	"Horse",
	"Cat",
	"Parrot",
	"Mule",
	"Skeleton horse",
	"Dolphin",
	"Polar bear",
	"Trader llama",
	"Llama",
	"Panda",
	"Wolf",
	"Bee",
	"Iron golem",
	"Spider",
	"Cave Spider",
	"Enderman",
	"Zombie Pigman",
	"Evoker",
	"Vindicator",
	"Pillager",
	"Ravager",
	"Vex",
	"Chicken Jockey",
	"Endermite",
	"Guardian",
	"Elder Guardian",
	"Shulker",
	"Skeleton Horseman",
	"Husk",
	"Stray",
	"Phantom",
	"Blaze",
	"Creeper",
	"Ghast",
	"Magma Cube",
	"Silverfish",
	"Skeleton",
	"Slime",
	"Spider Jockey",
	"Zombie",
	"Zombie Villager",
	"Drowned",
	"Wither Skeleton",
	"Witch",
	"Hoglin",
	"Piglin",
];
static MOBS_LEN: usize = MOBS.len();

static STATUS_EFFECTS: [&'static str; 33] = [
	"Absorption",
	"Bad Luck",
	"Bad Omen",
	"Blindness",
	"Conduit Power",
	"Dolphins Grace",
	"Fatal Poison",
	"Fire Resistance",
	"Glowing",
	"Haste",
	"Health Boost",
	"Hero of the Village",
	"Hunger",
	"Instant Damage",
	"Instant Health",
	"Invisibility",
	"Jump Boost",
	"Levitation",
	"Luck",
	"Mining Fatigue",
	"Nausea",
	"Night Vision",
	"Poison",
	"Regeneration",
	"Resistance",
	"Saturation",
	"Slow Falling",
	"Slowness",
	"Speed",
	"Strength",
	"Water Breathing",
	"Weakness",
	"Wither",
];
static STATUS_EFFECTS_LEN: usize = STATUS_EFFECTS.len();