codestates / codestates/Lollin-server

[Dev log] runes stat

Open
#58 0 comments 0 reactions 0 assignees View on GitHub
Dominant language
No language data
Stars
0
Forks
0
PR merge metrics
No merged PRs in 30d

Description

### 오늘은 어떻게 프로젝트에 기여했나요?
* riot api에서 모든 종류의 룬의 정보를 가져 올 수 있었지만 작은 미니룬에 대한 정보는 가져 올 수 없었다.

### 오늘의 프로젝트에서 힘든 점은 무엇인가요?
* riot api에서 모든 종류의 룬의 정보를 가져 올 수 있었지만 작은 미니룬에 대한 정보는 가져 올 수 없었다.
* url(https://raw.communitydragon.org/latest/plugins/rcp-be-lol-game-data/global/default/v1/perks.json)에서 오래된 룬의 정보를 가져 올 수 있었지만 경로가 살짝 달라서 일일히 하나씩 새로운 경로를 적용시킨 룬의 정보를 작성했다.
`newRunes.push(
makeStats(
5001,
'HealthScaling',
'perk-images/StatMods/StatModsHealthScalingIcon.png',
'체력',
'체력 증가',
'체력 + 15~90(레벨에 비례)',
),
);
newRunes.push(
makeStats(
5002,
'Armor',
'perk-images/StatMods/StatModsArmorIcon.png',
'방어',
'방어력 증가',
'방어력 +6',
),
);
newRunes.push(
makeStats(
5003,
'MagicRes',
'perk-images/StatMods/StatModsMagicResIcon.png',
'방어',
'마법 저항력 증가',
'마법 저항력 + 8',
),
);
newRunes.push(
makeStats(
5005,
'AttackSpeed',
'perk-images/StatMods/StatModsAttackSpeedIcon.png',
'공격 속도',
'공격 속도 증가',
'공격 속도 + 10%',
),
);
newRunes.push(
makeStats(
5007,
'CDRScaling',
'perk-images/StatMods/StatModsCDRScalingIcon.png',
'스킬 가속',
'스킬 가속 증가',
'스킬 가속 + 8',
),
);
newRunes.push(
makeStats(
5008,
'Adaptive',
'perk-images/StatMods/StatModsAdaptiveForceIcon.png',
'공격',
'적응형 능력치 증가',
'적응형 능력치 +9',
),
);
return newRunes;`

Contributor guide

No contributing guide indexed for this repository

Research direction

This dev log describes adding stat-rune data from the Riot API and the CommunityDragon perks.json URL, including entries built with makeStats and returned from newRunes. Start by locating those symbols and comparing the available rune data; done would mean the missing stat-rune information is represented and retrievable.

Written by the indexing model from the issue text.

Assessment

Domain
api, backend
Issue type
Documentation
Difficulty
3/5
Estimated time
1-2 days
Activity status
Stale
Clarity
Needs clarification
Newbie friendliness
20/100

Get new issues in your inbox

A short digest of beginner-friendly GitHub issues.