|
|
@@ -435,12 +435,13 @@ farm_land_upgrade_configs
|
|
|
初始化基本的种子数据,包括普通种子、神秘种子和巨化种子。
|
|
|
|
|
|
```sql
|
|
|
-INSERT INTO `farm_seeds` (`id`, `name`, `type`, `seed_time`, `sprout_time`, `growth_time`, `min_output`, `max_output`, `item_id`, `disaster_resistance`) VALUES
|
|
|
-(1, '萝卜种子', 1, 1800, 3600, 7200, 1000, 1500, 2001, '{"drought": 0.05, "pest": 0.05, "weed": 0.05}'),
|
|
|
-(2, '辣椒种子', 1, 3600, 7200, 14400, 1500, 2000, 2002, '{"drought": 0.05, "pest": 0.05, "weed": 0.05}'),
|
|
|
-(3, '苹果种子', 1, 7200, 14400, 28800, 2000, 2500, 2003, '{"drought": 0.05, "pest": 0.05, "weed": 0.05}'),
|
|
|
-(4, '西瓜种子', 1, 10800, 21600, 43200, 2500, 3000, 2004, '{"drought": 0.05, "pest": 0.05, "weed": 0.05}'),
|
|
|
-(5, '草莓种子', 1, 14400, 28800, 57600, 3000, 3500, 2005, '{"drought": 0.05, "pest": 0.05, "weed": 0.05}'),
|
|
|
+INSERT INTO `farm_seeds` (`id`, `name`, `type`, `seed_time`, `min_output`, `max_output`, `disaster_min_output`, `disaster_max_output`, `item_id`, `disaster_resistance`) VALUES
|
|
|
+(1, '萝卜种子', 1, 1800, 1000, 1500, 500, 2000, 2001, '{"drought": 0.05, "pest": 0.05, "weed": 0.05}'),
|
|
|
+(2, '辣椒种子', 1, 1800, 1500, 2000, 500, 2000, 2002, '{"drought": 0.05, "pest": 0.05, "weed": 0.05}'),
|
|
|
+(3, '苹果种子', 1, 1800, 2000, 2500, 500, 2000, 2003, '{"drought": 0.05, "pest": 0.05, "weed": 0.05}'),
|
|
|
+(4, '西瓜种子', 1, 1800, 2500, 3000, 500, 2000, 2004, '{"drought": 0.05, "pest": 0.05, "weed": 0.05}'),
|
|
|
+(5, '草莓种子', 1, 1800, 3000, 3500, 500, 2000, 2005, '{"drought": 0.05, "pest": 0.05, "weed": 0.05}'),
|
|
|
+(11, '神秘种子', 2, 10800, 1000, 6000, 500, 2000, 2011, '{"drought": 0.05, "pest": 0.05, "weed": 0.05}'),
|
|
|
(6, '南瓜种子', 1, 18000, 36000, 72000, 3500, 4000, 2006, '{"drought": 0.05, "pest": 0.05, "weed": 0.05}'),
|
|
|
(7, '核桃种子', 1, 21600, 43200, 86400, 4000, 4500, 2007, '{"drought": 0.05, "pest": 0.05, "weed": 0.05}'),
|
|
|
(8, '可可种子', 1, 25200, 50400, 100800, 4500, 5000, 2008, '{"drought": 0.05, "pest": 0.05, "weed": 0.05}'),
|