INSERT IGNORE INTO xf_xendeep_quest
(quest_key, target_event, goal, reward_coins, reward_seeds, is_repeatable)
VALUES
('plant_10_crops', 'crop_planted', 10, 40, 20, 1),
('harvest_5_crops', 'crop_harvested', 5, 30, 15, 1),
('feed_pets_7_times', 'pet_fed', 7, 25, 25, 1),
('buy_3_pets', 'pet_bought', 3, 100, 0, 0),
('expand_plots_3_times', 'plot_expanded', 3, 80, 0, 0),
('harvest_pets_seeds_100', 'pets_seeds_harvested', 100, 50, 50, 1),
('buy_any_pet', 'pet_bought', 1, 30, 10, 0),
('plant_seasonal_crop', 'crop_planted', 1, 20, 15, 0),
('harvest_pumpkin', 'crop_harvested', 1, 40, 20, 0),
('feed_main_pet_5_times', 'pet_fed', 5, 20, 20, 1)
;