Skip to content

Commit

Permalink
仮のテストデータを用意
Browse files Browse the repository at this point in the history
  • Loading branch information
nasubi-dev committed Jun 13, 2024
1 parent 89470b9 commit 6673f87
Show file tree
Hide file tree
Showing 3 changed files with 95 additions and 0 deletions.
39 changes: 39 additions & 0 deletions src/assets/achievements.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
{
"achievements":[
{
"id":1,
"name":"First Blood",
"description":"Get the first kill in a match.",
"icon":"https://placehold.jp/150x150.png",
"tag":["kill"]
},
{
"id":2,
"name":"Double Kill",
"description":"Get two kills in a row.",
"icon":"https://placehold.jp/150x150.png",
"tag":["kill"]
},
{
"id":3,
"name":"Triple Kill",
"description":"Get three kills in a row.",
"icon":"https://placehold.jp/150x150.png",
"tag":["kill"]
},
{
"id":4,
"name":"Quadra Kill",
"description":"Get four kills in a row.",
"icon":"https://placehold.jp/150x150.png",
"tag":["kill"]
},
{
"id":5,
"name":"Penta Kill",
"description":"Get five kills in a row.",
"icon":"https://placehold.jp/150x150.png",
"tag":["kill"]
}
]
}
32 changes: 32 additions & 0 deletions src/assets/members.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
{
"members": [
{
"myself":false,
"name": "苗字 名前",
"screen_name": "xxxxxx",
"icon": "https://placehold.jp/150x150.png",
"role": "member",
"posts_count": 0,
"joined_at": "2019-01-01T00:00:00Z",
"last_accessed_at": "2019-01-01T00:00:00Z",
"email": "xxxxxx"
},
{
"myself":true,
"name": "重音 テト",
"screen_name": "xxxxxx",
"icon": "https://placehold.jp/150x150.png",
"role": "owner",
"posts_count": 0,
"joined_at": "2019-01-01T00:00:00Z",
"last_accessed_at": "2019-01-01T00:00:00Z",
"email": "xxxxxx"
}
],
"prev_page": null,
"next_page": 2,
"total_count": 181,
"page": 1,
"per_page": 20,
"max_per_page": 100
}
24 changes: 24 additions & 0 deletions src/assets/unlockedAchievements.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
{
"unlockedAchievements":[
{
"achievementID": "1",
"userEmail": "xxxxx",
"unlockedAt": "2017-01-01T00:00:00Z"
},
{
"achievementID": "2",
"userEmail": "xxxxx",
"unlockedAt": "2017-01-01T00:00:00Z"
},
{
"achievementID": "3",
"userEmail": "xxxxx",
"unlockedAt": "2017-01-01T00:00:00Z"
},
{
"achievementID": "4",
"userEmail": "xxxxx",
"unlockedAt": "2017-01-01T00:00:00Z"
}
]
}

0 comments on commit 6673f87

Please sign in to comment.