Skip to content

Commit

Permalink
quests: some quests have better rewards
Browse files Browse the repository at this point in the history
  • Loading branch information
GGonryun committed Jul 12, 2024
1 parent 9802c7f commit 1c0a1e7
Showing 1 changed file with 28 additions and 13 deletions.
41 changes: 28 additions & 13 deletions libs/data/quests/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -50,14 +50,14 @@ export const QUESTS: Prisma.PlatformQuestUncheckedCreateInput[] = [
{
id: 'WATCH_AD_DAILY',
order: 7,
version: 1,
version: 2,
taskId: 'WATCH_AD_DAILY',
name: 'Watch an Ad (Daily)',
loot: {
createMany: {
data: [
{
itemId: '10044',
itemId: '2',
quantity: 3,
chance: 1,
},
Expand All @@ -68,7 +68,7 @@ export const QUESTS: Prisma.PlatformQuestUncheckedCreateInput[] = [
{
id: 'WATCH_AD_WEEKLY',
order: 8,
version: 1,
version: 2,
taskId: 'WATCH_AD_WEEKLY',
name: 'Watch an Ad (Weekly)',
loot: {
Expand All @@ -79,24 +79,39 @@ export const QUESTS: Prisma.PlatformQuestUncheckedCreateInput[] = [
quantity: 3,
chance: 1,
},
{
itemId: '5',
quantity: 3,
chance: 1,
},
],
},
},
},
{
id: 'WATCH_AD_MONTHLY',
order: 9,
version: 1,
version: 2,
taskId: 'WATCH_AD_MONTHLY',
name: 'Watch an Ad (Monthly)',
loot: {
createMany: {
data: [
{
itemId: '2',
quantity: 3,
chance: 1,
},
{
itemId: '5',
quantity: 3,
chance: 1,
},
{
itemId: '8',
quantity: 3,
chance: 1,
},
],
},
},
Expand All @@ -105,14 +120,14 @@ export const QUESTS: Prisma.PlatformQuestUncheckedCreateInput[] = [
{
id: 'PLAY_GAME_DAILY_5',
order: 10,
version: 0,
version: 2,
taskId: 'PLAY_GAME_DAILY_5',
loot: {
createMany: {
data: [
{
itemId: '1',
quantity: 5,
itemId: '5',
quantity: 1,
chance: 1,
},
],
Expand All @@ -122,14 +137,14 @@ export const QUESTS: Prisma.PlatformQuestUncheckedCreateInput[] = [
{
id: 'PLAY_GAME_WEEKLY_25',
order: 11,
version: 0,
version: 2,
taskId: 'PLAY_GAME_WEEKLY_25',
loot: {
createMany: {
data: [
{
itemId: '1',
quantity: 25,
itemId: '5',
quantity: 5,
chance: 1,
},
],
Expand Down Expand Up @@ -279,14 +294,14 @@ export const QUESTS: Prisma.PlatformQuestUncheckedCreateInput[] = [
{
id: 'BATTLE_PARTICIPATION_DAILY',
order: 40,
version: 0,
version: 2,
taskId: 'BATTLE_PARTICIPATION_DAILY',
loot: {
createMany: {
data: [
{
itemId: '1',
quantity: 10,
quantity: 20,
chance: 1,
},
],
Expand Down Expand Up @@ -395,7 +410,7 @@ export const QUESTS: Prisma.PlatformQuestUncheckedCreateInput[] = [
{
id: 'ADD_REFERRAL_INFINITE',
order: 1003,
version: 0,
version: 2,
taskId: 'ADD_REFERRAL_INFINITE',
loot: {
createMany: {
Expand Down

0 comments on commit 1c0a1e7

Please sign in to comment.