<?xml version="1.0" encoding="UTF-8" ?><rdf:RDF 
  xmlns="http://purl.org/rss/1.0/"
  xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
  xmlns:atom="http://www.w3.org/2005/Atom"
  xmlns:dc="http://purl.org/dc/elements/1.1/"
  xml:lang="ja">
  <channel rdf:about="http://w.atwiki.jp/bloxdiocodewiki/">
    <title>bloxd.io-code-@wiki</title>
    <link>http://w.atwiki.jp/bloxdiocodewiki/</link>
    <atom:link href="https://w.atwiki.jp/bloxdiocodewiki/rss10.xml" rel="self" type="application/rss+xml" />
    <atom:link rel="hub" href="https://pubsubhubbub.appspot.com" />
    <description>bloxd.io-code-@wiki</description>

    <dc:language>ja</dc:language>
    <dc:date>2026-02-18T12:51:48+09:00</dc:date>
    <utime>1771386708</utime>

    <items>
      <rdf:Seq>
                <rdf:li rdf:resource="https://w.atwiki.jp/bloxdiocodewiki/pages/49.html" />
                <rdf:li rdf:resource="https://w.atwiki.jp/bloxdiocodewiki/pages/68.html" />
                <rdf:li rdf:resource="https://w.atwiki.jp/bloxdiocodewiki/pages/66.html" />
                <rdf:li rdf:resource="https://w.atwiki.jp/bloxdiocodewiki/pages/67.html" />
                <rdf:li rdf:resource="https://w.atwiki.jp/bloxdiocodewiki/pages/23.html" />
                <rdf:li rdf:resource="https://w.atwiki.jp/bloxdiocodewiki/pages/1.html" />
                <rdf:li rdf:resource="https://w.atwiki.jp/bloxdiocodewiki/pages/63.html" />
                <rdf:li rdf:resource="https://w.atwiki.jp/bloxdiocodewiki/pages/65.html" />
                <rdf:li rdf:resource="https://w.atwiki.jp/bloxdiocodewiki/pages/64.html" />
                <rdf:li rdf:resource="https://w.atwiki.jp/bloxdiocodewiki/pages/2.html" />
              </rdf:Seq>
    </items>
	
		
    
  </channel>
    <item rdf:about="https://w.atwiki.jp/bloxdiocodewiki/pages/49.html">
    <title>type/number</title>
    <link>https://w.atwiki.jp/bloxdiocodewiki/pages/49.html</link>
    <description>
      ** 概要
数を表現する型
あらゆる実数を64bit Doubleの精度で表現可能。
詳しくは[[こちら&gt;https://developer.mozilla.org/ja/docs/Web/JavaScript/Reference/Global_Objects/Number]]    </description>
    <dc:date>2026-02-18T12:51:48+09:00</dc:date>
    <utime>1771386708</utime>
  </item>
    <item rdf:about="https://w.atwiki.jp/bloxdiocodewiki/pages/68.html">
    <title>typedef/PlayerAttemptDamageOtherPlayerOpts</title>
    <link>https://w.atwiki.jp/bloxdiocodewiki/pages/68.html</link>
    <description>
      eIdがhitEIdを攻撃するときの詳細を決定する型
**jsdoc
#highlight(javascript){{
/**
 * @typedef {object} PlayerAttemptDamageOtherPlayerOpts
 * @property {entityId} eId
 * @property {entityId} hitEId
 * @property {number} attemptedDmgAmt
 * @property {string} withItem
 * @property {string | undefined} [bodyPartHit=undefined]
 * @property {[number,number,number] | undefined} [attackDir=undefined]
 * @property {boolean} [showCritParticles=false]
 * @property {boolean} [reduceVerticalKbVelocity=true]
 * @property {number} [horizontalKbMultiplier=1]
 * @property {number} [verticalKbMultiplier=1]
 * @property {boolean} [broadcastEntityHurt=true]
 * @property {???} [attackCooldownSettings=null]
 * @property {string | null} [hittingSoundOverride=null]
 * @property {boolean} [ignoreOtherEntitySettingCanAttack=false]
 * @property {boolean} [isTrueDamage=false]
 * @property {???} [damagerDbId=null]
 */
}}
**概要
&amp;ref(attemptApplyDamage_image.png,画像/attemptApplyDamage_image.png,title=eIdとhitEIdの関係図)
*** eId
[[entityId]]です。攻撃する側のidです。必須です。
*** hitEId
[[entityId]]です。攻撃を受ける側のidです。必須です。
*** attemptedDmgAmt
[[number型&gt;type/number]]です。攻撃ダメージ量です。必須です。
*** withItem
アイテム名です。攻撃時に使われるアイテムです。アイテムによる攻撃力の変化は起きません。必須です。    </description>
    <dc:date>2026-01-06T17:00:00+09:00</dc:date>
    <utime>1767686400</utime>
  </item>
    <item rdf:about="https://w.atwiki.jp/bloxdiocodewiki/pages/66.html">
    <title>api一覧/attemptApplyDamage</title>
    <link>https://w.atwiki.jp/bloxdiocodewiki/pages/66.html</link>
    <description>
      **説明
**構文
#highlight(javascript){{
api.attemptApplyDamage(PlayerAttemptDamageOtherPlayerOpts)
}}
**引数
***PlayerAttemptDamageOtherPlayerOpts
オブジェクトです。プロパティがたくさんあり、一部にはデフォルト値が設定されています。
** 返り値

** githubのjsdoc
#highlight(javascript){{
/**
 * Apply damage to a lifeform.
 * eId is the player initiating the damage, hitEId is the lifeform being hit.
 *
 * It is recommended to self-inflict damage when the game code wants to apply damage to a lifeform.
 *
 * @param {PlayerAttemptDamageOtherPlayerOpts} {
 *     eId,
 *     hitEId,
 *     attemptedDmgAmt,
 *     withItem,
 *     bodyPartHit = undefined,
 *     attackDir = undefined,
 *     showCritParticles = false,
 *     reduceVerticalKbVelocity = true,
 *     horizontalKbMultiplier = 1,
 *     verticalKbMultiplier = 1,
 *     broadcastEntityHurt = true,
 *     attackCooldownSettings = null,
 *     hittingSoundOverride = null,
 *     ignoreOtherEntitySettingCanAttack = false,
 *     isTrueDamage = false,
 *     damagerDbId = null,
 * }
 * @returns {boolean} - whether the attack damaged the lifeform
 */
attemptApplyDamage({
    eId,
    hitEId,
    attemptedDmgAmt,
    withItem,
    bodyPartHit = undefined,
    attackDir = undefined,
    showCritParticles = false,
    reduceVerticalKbVelocity = true,
    horizontalKbMultiplier = 1,
    verticalKbMultiplier = 1,
    broadcastEntityHurt = true,
    attackCooldownSettings = null,
    hittingSoundOverride = null,
    ignoreOtherEntitySettingCanAttack = false,
    isTrueDamage = false,
    damagerDbId = null,
    })
}}
** 使用例
特になし    </description>
    <dc:date>2026-01-06T16:36:41+09:00</dc:date>
    <utime>1767685001</utime>
  </item>
    <item rdf:about="https://w.atwiki.jp/bloxdiocodewiki/pages/67.html">
    <title>画像/attemptApplyDamage_image.png</title>
    <link>https://w.atwiki.jp/bloxdiocodewiki/pages/67.html</link>
    <description>
      &amp;image(attemptApplyDamage_image.png)    </description>
    <dc:date>2026-01-06T16:33:02+09:00</dc:date>
    <utime>1767684782</utime>
  </item>
    <item rdf:about="https://w.atwiki.jp/bloxdiocodewiki/pages/23.html">
    <title>api一覧</title>
    <link>https://w.atwiki.jp/bloxdiocodewiki/pages/23.html</link>
    <description>
      github順に並んでいます


** 目次
- [[getPosition&gt;./getPosition]]
-[[setPosition&gt;api一覧/setPosition]]
-[[getPlayerIds&gt;api一覧/getPlayerIds]] 
-[[playerIsInGame&gt;api一覧/playerIsInGame]] 
-[[playerIsLoggedIn&gt;api一覧/playerIsLoggedIn]] 
-[[getPlayerPartyWhenJoined&gt;api一覧/getPlayerPartyWhenJoined]] 
-[[getNumPlayers&gt;api一覧/getNumPlayers]] 
-[[getBlockCoordinatesPlayerStandingOn&gt;api一覧/getBlockCoordinatesPlayerStandingOn]] 
-[[getBlockTypesPlayerStandingOn&gt;api一覧/getBlockTypesPlayerStandingOn]] 
-[[getUnitCoordinatesLifeformWithin&gt;api一覧/getUnitCoordinatesLifeformWithin]]
-[[showShopTutorial&gt;api一覧/showShopTutorial]] 
-[[getShieldAmount&gt;api一覧/getShieldAmount]]
-[[setShieldAmount&gt;api一覧/setShieldAmount]] 
-[[getHealth&gt;api一覧/getHealth]] 
-[[applyHealthChange&gt;api一覧/applyHealthChange]]
-[[setHealth&gt;api一覧/setHealth]] 
-[[applyMeleeHit&gt;api一覧/applyMeleeHit]] -制作中
-[[attemptApplyDamage&gt;api一覧/attemptApplyDamage]]
-[[forceRespawn&gt;api一覧/forceRespawn]]
-[[killLifeform&gt;api一覧/killLifeform]] 
-[[getCurrentKillstreak&gt;api一覧/getCurrentKillstreak]]
-[[clearKillstreak&gt;api一覧/clearKillstreak]] 
-[[isAlive&gt;api一覧/isAlive]] 
-[[broadcastMessage&gt;api一覧/broadcastMessage]] 
-[[sendMessage&gt;api一覧/sendMessage]] 
-[[sendFlyingMiddleMessage&gt;api一覧/sendFlyingMiddleMessage]] 
-[[setClientOption&gt;api一覧/setClientOption]] 
-[[getClientOption&gt;api一覧/getClientOption]] 
-[[setClientOptions&gt;api一覧/setClientOptions]]
-[[setClientOptionToDefault&gt;api一覧/setClientOptionToDefault]] 
-[[setTargetedPlayerSettingForEveryone&gt;api一覧/setTargetedPlayerSettingForEveryone]] 
-[[setEveryoneSettingForPlayer&gt;api一覧/setEveryoneSettingForPlayer]] 
-[[setOtherEntitySetting&gt;api一覧/setOtherEntitySetting]] 
-[[setOtherEntitySettings&gt;api一覧/setOtherEntitySettings]] 
-[[getOtherEntitySetting&gt;api一覧/getOtherEntitySetting]] 
-[[playParticleEffect&gt;api一覧/playParticleEffect]]
-[[getEntityName&gt;api一覧/getEntityName]] 
-[[getPlayerId&gt;api一覧/getPlayerId]] 
-[[getPlayerDbId&gt;api一覧/getPlayerDbId]] 
-[[getPlayerIdFromDbId&gt;api一覧/getPlayerIdFromDbId]]
-[[kickPlayer&gt;api一覧/kickPlayer]] 
-[[isBlockInLoadedChunk&gt;api一覧/isBlockInLoadedChunk]]
-[[getBlock&gt;api一覧/getBlock]]
-[[getBlockId&gt;api一覧/getBlockId]] 
-[[setBlock&gt;api一覧/setBlock]] 
-[[attemptWorldChangeBlock&gt;api一覧/attemptWorldChangeBlock]] 
-[[getBlockSolidity&gt;api一覧/getBlockSolidity]] 
-[[setBlockRect&gt;api一覧/setBlockRect]] 
-[[setBlockWalls&gt;api一覧/setBlockWalls]] 
-[[getChunk&gt;api一覧/getChunk]] 
-[[getEmptyChunk&gt;api一覧/getEmptyChunk]]
-[[getMetaInfo&gt;api一覧/getMetaInfo]]
-[[blockNameToBlockId&gt;api一覧/blockNameToBlockId]]
-[[blockIdToBlockName&gt;api一覧/blockIdToBlockName]] 
-[[blockCoordToChunkId&gt;api一覧/blockCoordToChunkId]] 
-[[chunkIdToBotLeftCoord&gt;api一覧/chunkIdToBotLeftCoord]] 
-[[sendTopRightHelper&gt;api一覧/sendTopRightHelper]]
-[[isMobile&gt;api一覧/isMobile]] 
-[[createItemDrop&gt;api一覧/createItemDrop]] 
-[[setCantPickUpItem&gt;api一覧/setCantPickUpItem]]
-[[deleteItemDrop&gt;api一覧/deleteItemDrop]] 
-[[getInitialItemMetadata&gt;api一覧/getInitialItemMetadata]] 
-[[getItemStat&gt;api一覧/getItemStat]]
-[[setCameraDirection&gt;api一覧/setCameraDirection]]
-[[setPlayerOpacity&gt;api一覧/setPlayerOpacity]]
-[[setPlayerOpacityForOnePlayer&gt;api一覧/setPlayerOpacityForOnePlayer]]
-[[now&gt;api一覧/now]]
-[[checkValid&gt;api一覧/checkValid]]
-[[setCanChangeBlock&gt;api一覧/setCanChangeBlock]]
-[[setCantChangeBlock&gt;api一覧/setCantChangeBlock]]
-[[setCanChangeBlockType&gt;api一覧/setCanChangeBlockType]]
-[[setCantChangeBlockType&gt;api一覧/setCantChangeBlockType]]
-[[resetCanChangeBlockType&gt;api一覧/resetCanChangeBlockType]]
-[[setCanChangeBlockRect&gt;api一覧/setCanChangeBlockRect]]
-[[setCantChangeBlockRect&gt;api一覧/setCantChangeBlockRect]]
-[[resetCanChangeBlockRect&gt;api一覧/resetCanChangeBlockRect]]
-[[setWalkThroughType&gt;api一覧/setWalkThroughType]]
-[[setWalkThroughRect&gt;api一覧/setWalkThroughRect]]
-[[giveItem&gt;api一覧/giveItem]]
-[[inventoryIsFull&gt;api一覧/inventoryIsFull]]
-[[setItemSlot&gt;api一覧/setItemSlot]]
-[[removeItemName&gt;api一覧/removeItemName]]
-[[getItemSlot&gt;api一覧/getItemSlot]]
-[[hasItem&gt;api一覧/hasItem]]
-[[getInventoryItemAmount&gt;api一覧/getInventoryItemAmount]]
-[[clearInventory&gt;api一覧/clearInventory]]
-[[setSelectedInventorySlotI&gt;api一覧/setSelectedInventorySlotI]]
-[[getSelectedInventorySlotI&gt;api一覧/getSelectedInventorySlotI]]
-[[getHeldItem&gt;api一覧/getHeldItem]]
-[[getInventoryFreeSlotCount&gt;api一覧/getInventoryFreeSlotCount]]
-[[canOpenStandardChest&gt;api一覧/canOpenStandardChest]]
-[[giveStandardChestItem&gt;api一覧/giveStandardChestItem]]
-[[getStandardChestFreeSlotCount&gt;api一覧/getStandardChestFreeSlotCount]]
-[[getStandardChestItemAmount&gt;api一覧/getStandardChestItemAmount]]
-[[getStandardChestItemSlot&gt;api一覧/getStandardChestItemSlot]]
-[[getStandardChestItems&gt;api一覧/getStandardChestItems]]
-[[setStandardChestItemSlot&gt;api一覧/setStandardChestItemSlot]]
-[[getMoonstoneChestItemSlot&gt;api一覧/getMoonstoneChestItemSlot]]
-[[getMoonstoneChestItems&gt;api一覧/getMoonstoneChestItems]]
-[[setMoonstoneChestItemSlot&gt;api一覧/setMoonstoneChestItemSlot]]
-[[setBlockData&gt;api一覧/setBlockData]]
-[[getBlockData&gt;api一覧/getBlockData]]
-[[getLobbyName&gt;api一覧/getLobbyName]]
-[[isPublicLobby&gt;api一覧/isPublicLobby]]
-[[getLobbyType&gt;api一覧/getLobbyType]]
-[[progressBarUpdate&gt;api一覧/progressBarUpdate]]
-[[initiateMiddleScreenBar&gt;api一覧/initiateMiddleScreenBar]]
-[[removeMiddleScreenBar&gt;api一覧/removeMiddleScreenBar]]
-[[editItemCraftingRecipes&gt;api一覧/editItemCraftingRecipes]]
-[[resetItemCraftingRecipes&gt;api一覧/resetItemCraftingRecipes]]
-[[removeItemCraftingRecipes&gt;api一覧/removeItemCraftingRecipes]]
-[[isInsideRect&gt;api一覧/isInsideRect]]
-[[getEntitiesInRect&gt;api一覧/getEntitiesInRect]]
-[[getEntityType&gt;api一覧/getEntityType]]
-[[createMobHerd&gt;api一覧/createMobHerd]]
-[[attemptSpawnMob&gt;api一覧/attemptSpawnMob]]
-[[despawnMob&gt;api一覧/despawnMob]]
-[[getDefaultMobSetting&gt;api一覧/getDefaultMobSetting]]
-[[setDefaultMobSetting&gt;api一覧/setDefaultMobSetting]]
-[[getMobSetting&gt;api一覧/getMobSetting]]
-[[setMobSetting&gt;api一覧/setMobSetting]]
-[[getNumMobs&gt;api一覧/getNumMobs]]
-[[getMobIds&gt;api一覧/getMobIds]]
-[[applyImpulse&gt;api一覧/applyImpulse]]
-[[getVelocity&gt;api一覧/getVelocity]]
-[[setVelocity&gt;api一覧/setVelocity]]
-[[setEntityHeading&gt;api一覧/setEntityHeading]]
-[[setItemAmount&gt;api一覧/setItemAmount]]
-[[setMaxPlayers&gt;api一覧/setMaxPlayers]]
-[[sendOverShopInfo&gt;api一覧/sendOverShopInfo]]
-[[openShop&gt;api一覧/openShop]]
-[[applyEffect&gt;api一覧/applyEffect]]
-[[getEffects&gt;api一覧/getEffects]]
-[[removeEffect&gt;api一覧/removeEffect]]
-[[changePlayerIntoSkin&gt;api一覧/changePlayerIntoSkin]]
-[[removeAppliedSkin&gt;api一覧/removeAppliedSkin]]
-[[scalePlayerMeshNodes&gt;api一覧/scalePlayerMeshNodes]]
-[[updateEntityNodeMeshAttachment&gt;api一覧/updateEntityNodeMeshAttachment]]
-[[setPlayerPose&gt;api一覧/setPlayerPose]]
-[[setPlayerPhysicsState&gt;api一覧/setPlayerPhysicsState]]
-[[getPlayerPhysicsState&gt;api一覧/getPlayerPhysicsState]]
-[[addFollowingEntityToPlayer&gt;api一覧/addFollowingEntityToPlayer]]
-[[removeFollowingEntityFromPlayer&gt;api一覧/removeFollowingEntityFromPlayer]]
-[[setCameraZoom&gt;api一覧/setCameraZoom]]
-[[playSound&gt;api一覧/playSound]]
-[[broadcastSound&gt;api一覧/broadcastSound]]
-[[playClientPredictedSound&gt;api一覧/playClientPredictedSound]]
-[[calcExplosionForce&gt;api一覧/calcExplosionForce]]
-[[getPlayerTargetInfo&gt;api一覧/getPlayerTargetInfo]]
-[[getPlayerFacingInfo&gt;api一覧/getPlayerFacingInfo]]
-[[raycastForBlock&gt;api一覧/raycastForBlock]]
-[[isPlayerCrouching&gt;api一覧/isPlayerCrouching]]
-[[getAuraInfo&gt;api一覧/getAuraInfo]]
-[[setTotalAura&gt;api一覧/setTotalAura]]
-[[setAuraLevel&gt;api一覧/setAuraLevel]]
-[[applyAuraChange&gt;api一覧/applyAuraChange]]
-[[setCallbackValueFallback&gt;api一覧/setCallbackValueFallback]]    </description>
    <dc:date>2026-01-03T18:40:25+09:00</dc:date>
    <utime>1767433225</utime>
  </item>
    <item rdf:about="https://w.atwiki.jp/bloxdiocodewiki/pages/1.html">
    <title>トップページ</title>
    <link>https://w.atwiki.jp/bloxdiocodewiki/pages/1.html</link>
    <description>
      &amp;html(&lt;pre style=&quot;padding:0.8rem;background-color:black;&quot;&gt;&lt;span id=&quot;hellobloxd&quot; style=&quot;color:green;font-size:80%;&quot;&gt;&lt;/span&gt;&lt;/pre&gt;)
#style(display:none){
#divclass(count_pages){&amp;count_pages(read=all_only)}

#divclass(count_menber){
&amp;count_members()}
}
#javascript(){{
const pageElement = document.querySelector(&quot;.count_pages div&quot;)
const pageAmount = Number(pageElement.textContent)


const menberElement = document.querySelector(&quot;.count_menber div&quot;)
const menberAmount = Number(menberElement.textContent)

const element = document.getElementById(&quot;hellobloxd&quot;);
element.content = &quot;&quot;
const showText = &quot;- hello bloxd!&quot;
let nowShowText = &quot;c:\\w &quot;
for(const [i,str] of showText.split(&quot;&quot;).entries()){
setTimeout(() =&gt; {
  nowShowText+=str;
  element.textContent = nowShowText+&quot;_&quot;;
  },i*300)
}
setTimeout(() =&gt; {
element.textContent = nowShowText + `\n\n\npages:${pageAmount}\nowner:bulebrainbrand\nmenber:${menberAmount}\n\nc:\\w _`
},showText.length*300+500)


}}
このwikiはbulebrainbrandが提供するbloxd.ioのcode非公式wikiです。コードの学び方、始め方、そして極め方が大まかにふんわりと書いてあるかもしれません

-【公式ゲームサイト】：https://bloxd.io
-【公式コードgithub】: https://github.com/Bloxdy/code-api

#style(margin:0 auto;background-color:#777;border-radius:0.5rem;border:solid #ccc 0.1rem;padding:0.3rem;text-align: center;){
#style(display:inline-grid;place-items: center;background-color:#888;aspect-ratio: 1;border:solid #ccc 0.2rem;padding:0.5rem;width:10rem;border-radius:0.8rem;margin:0.3rem){
&amp;image(hub_page_image.png,page=画像/hub_page_image.png)
#style(font-size:large;){[[api一覧]]}
&amp;spanstyle(font-size:0.8rem;color:white;){api関数の一覧}
}
#style(display:inline-grid;place-items: center;background-color:#888;aspect-ratio: 1;border:solid #ccc 0.2rem;padding:0.5rem;width:10rem;border-radius:0.8rem;margin:0.3rem){
&amp;image(hub_page_image.png,page=画像/hub_page_image.png)
#style(font-size:large;){[[callback一覧]]}
&amp;spanstyle(font-size:0.8rem;color:white;){callbackの一覧}
}
#style(display:inline-grid;place-items: center;background-color:#888;aspect-ratio: 1;border:solid #ccc 0.2rem;padding:0.5rem;width:10rem;border-radius:0.8rem;margin:0.3rem){
&amp;image(hub_page_image.png,page=画像/hub_page_image.png)
#style(font-size:large;){[[typedef]]}
&amp;spanstyle(font-size:0.8rem;color:white;){bloxd.ioの型の一覧}
}
#style(display:inline-grid;place-items: center;background-color:#888;aspect-ratio: 1;border:solid #ccc 0.2rem;padding:0.5rem;width:10rem;border-radius:0.8rem;margin:0.3rem){
&amp;image(study_page_image.png,page=画像/study_page_image.png,x=80)
#style(font-size:large;){[[コード入門]]}
&amp;spanstyle(font-size:0.8rem;color:white;){コードの学び方}
}
#style(display:inline-grid;place-items: center;background-color:#888;aspect-ratio: 1;border:solid #ccc 0.2rem;padding:0.5rem;width:10rem;border-radius:0.8rem;margin:0.3rem){
&amp;image(study_page_image.png,page=画像/study_page_image.png,x=80)
#style(font-size:large;){[[type]]}
&amp;spanstyle(font-size:0.8rem;color:white;){javascriptのtype}
}
}

※当wikiは非公式の攻略wikiです。情報の妥当性や正確性について保証するものではなく、一切の責任を負いかねます。
※当wikiを利用することによって生じるいかなる損害も当サイトでは補償致しません。
※ご利用につきましては自己責任となりますのでご注意ください。
※また、当wikiおよびwiki管理人はbloxd運営様とは一切関係がありません。wiki管理人にエラーなどについて問い合わせないようお願いします。

※文章の著作権は当wikiにあります。内容の複写、転載を禁じます。
※当wikiで使用している画像、情報等の権利は、画像をアップロードしたページに特記のない限り、bloxd LTDに帰属します。

** 方針
不足してる日本語のcodeの情報を初級者向けに羅列する形で増やします。    </description>
    <dc:date>2026-01-03T16:59:21+09:00</dc:date>
    <utime>1767427161</utime>
  </item>
    <item rdf:about="https://w.atwiki.jp/bloxdiocodewiki/pages/63.html">
    <title>typedef</title>
    <link>https://w.atwiki.jp/bloxdiocodewiki/pages/63.html</link>
    <description>
      javascriptの標準にはない、オリジナルのタイプを定義するページのハブページです。
**目次
#lsd()    </description>
    <dc:date>2026-01-03T13:03:33+09:00</dc:date>
    <utime>1767413013</utime>
  </item>
    <item rdf:about="https://w.atwiki.jp/bloxdiocodewiki/pages/65.html">
    <title>画像/study_page_image.png</title>
    <link>https://w.atwiki.jp/bloxdiocodewiki/pages/65.html</link>
    <description>
      &amp;image(study_page_image.png)    </description>
    <dc:date>2026-01-03T12:55:42+09:00</dc:date>
    <utime>1767412542</utime>
  </item>
    <item rdf:about="https://w.atwiki.jp/bloxdiocodewiki/pages/64.html">
    <title>画像/hub_page_image.png</title>
    <link>https://w.atwiki.jp/bloxdiocodewiki/pages/64.html</link>
    <description>
      &amp;image(hub_page_image.png)
&amp;html(&lt;a target=&quot;_blank&quot; href=&quot;https://icons8.com/icon/43412/tree-structure&quot;&gt;ツリー構造&lt;/a&gt; アイコン by &lt;a target=&quot;_blank&quot; href=&quot;https://icons8.com&quot;&gt;Icons8&lt;/a&gt;)    </description>
    <dc:date>2026-01-02T22:35:37+09:00</dc:date>
    <utime>1767360937</utime>
  </item>
    <item rdf:about="https://w.atwiki.jp/bloxdiocodewiki/pages/2.html">
    <title>メニュー</title>
    <link>https://w.atwiki.jp/bloxdiocodewiki/pages/2.html</link>
    <description>
      ** メニュー
[[ホーム&gt;https://w.atwiki.jp/bloxdiocodewiki]]
***ハブページ
- [[api一覧]]
- [[callback一覧]]
- [[コード入門]]
- [[type]]
- [[typedef]]

***識別子
- [[playerId]]
- [[mobId]]
- [[itemId]]
- [[entityId]]
- [[lifeformId]]    </description>
    <dc:date>2026-01-01T18:57:13+09:00</dc:date>
    <utime>1767261433</utime>
  </item>
  </rdf:RDF>
