首页
来自《新月同行》超级Wiki
官方网站 | 官方网站(互联网档案馆存档) | 官方TapTap页面
本站为非官方粉丝向Wiki,与游戏官方无直接关联。
<script>
fetch('https://xytxyiyan.zeabur.app')
.then(response => response.json())
.then(data => {
const hitokoto = document.querySelector('#hitokoto_text')
hitokoto.innerText = "『" + data.hitokoto + "』";
const from = document.querySelector('#hitokoto_from')
from.innerText = "—— " + data.from_who;
})
.catch(console.error)
</script>
